(f3d83a912) Disabled: Separate mac path to test if editing the actual application folder when using steam is OK

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:32:38 +03:00
parent 2215c2fba0
commit 9f87239724
13 changed files with 419 additions and 83 deletions
@@ -246,6 +246,25 @@ namespace Barotrauma
}
}
public string DisplayName
{
get;
private set;
}
private string roomName;
[Editable, Serialize("", true, translationTextTag: "RoomName.")]
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