(ad50d7e7a) Removed a dot from the end of afflictioncauseofdeath.oxygenlow in PT-BR

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:59:21 +03:00
parent 61c5f52441
commit 7c61c5e179
9 changed files with 67 additions and 176 deletions
@@ -83,6 +83,27 @@ namespace Barotrauma
public readonly List<Gap> ConnectedGaps = new List<Gap>();
public readonly List<Gap> ConnectedGaps = new List<Gap>();
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 string DisplayName
{
get;
private set;
}
private string roomName;
[Editable, Serialize("", true, translationTextTag: "RoomName.")]
public string RoomName