(cb1c8745f) Changed oxygen generator values in Dugong and Remora, recommended crew in Humpback

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:52:38 +03:00
parent 71685ef28c
commit 64f147ea6c
16 changed files with 228 additions and 305 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