fix: Adds name support for all mods (#1128)
This commit is contained in:
parent
b1cf95f810
commit
ffdc08259f
33 changed files with 404 additions and 343 deletions
|
|
@ -23,5 +23,14 @@ public partial class MobileMod
|
|||
[DirtyTrackingEntity]
|
||||
public Mobile Owner { get; set; }
|
||||
|
||||
[SerializableField(0)]
|
||||
private string _name;
|
||||
|
||||
public MobileMod(Mobile owner) => Owner = owner;
|
||||
|
||||
public MobileMod(Mobile owner, string name)
|
||||
{
|
||||
Owner = owner;
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue