Made the name of the "Linkable/IsLinkable" property consistent
This commit is contained in:
@@ -106,7 +106,7 @@ namespace Barotrauma
|
||||
}
|
||||
}
|
||||
|
||||
public override bool IsLinkable
|
||||
public override bool Linkable
|
||||
{
|
||||
get { return true; }
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ namespace Barotrauma
|
||||
|
||||
private XElement saveElement;
|
||||
|
||||
public override bool IsLinkable
|
||||
public override bool Linkable
|
||||
{
|
||||
get
|
||||
{
|
||||
|
||||
@@ -84,7 +84,7 @@ namespace Barotrauma
|
||||
}
|
||||
}
|
||||
|
||||
public virtual bool IsLinkable
|
||||
public virtual bool Linkable
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
@@ -61,18 +61,12 @@ namespace Barotrauma
|
||||
}
|
||||
|
||||
[Serialize(false, false)]
|
||||
public bool Linkable //TODO: make this property's name consistent
|
||||
public bool Linkable
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
|
||||
public virtual bool IsLinkable
|
||||
{
|
||||
get { return Linkable; }
|
||||
private set { Linkable = value; }
|
||||
}
|
||||
|
||||
|
||||
public MapEntityCategory Category
|
||||
{
|
||||
get;
|
||||
|
||||
Reference in New Issue
Block a user