Fixed entity linking not working
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user