(f4fb7a3ad) Rename "automatic orders" to "autonomous objectives".

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:24:45 +03:00
parent e284e1039a
commit 9fab69663b
9 changed files with 384 additions and 73 deletions
@@ -702,6 +702,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