Fixed entity linking not working

This commit is contained in:
juanjp600
2017-12-02 01:05:16 -03:00
parent ee04eecd49
commit 5cb603b3e5
3 changed files with 66 additions and 10 deletions
@@ -59,13 +59,19 @@ namespace Barotrauma
get;
protected set;
}
[Serialize(false, false)]
public virtual bool IsLinkable
public bool Linkable //TODO: make this property's name consistent
{
get;
private set;
}
public virtual bool IsLinkable
{
get { return Linkable; }
private set { Linkable = value; }
}
public MapEntityCategory Category
{