(97b5e76f9) Made mudraptor bit attack slightly less deadly. You will still die horribly, but less quickly now.

This commit is contained in:
Joonas Rikkonen
2019-04-15 12:07:56 +03:00
parent 649eeb5a27
commit 754bcd9bf2

View File

@@ -147,6 +147,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