(02594033c) Added campaign & editor disclaimers to EnglishVanilla

This commit is contained in:
Joonas Rikkonen
2019-04-15 12:07:13 +03:00
parent 66de47f041
commit 40ef1c018d
@@ -90,6 +90,25 @@ namespace Barotrauma
}
}
public string DisplayName
{
get;
private set;
}
private string roomName;
[Editable, Serialize("", true)]
public string RoomName
{
get { return roomName; }
set
{
if (roomName == value) { return; }
roomName = value;
DisplayName = TextManager.Get(roomName, returnNull: true) ?? roomName;
}
}
public override Rectangle Rect
{
get