(24bcea40e) Fix the ai checks about door buttons. Don't aim at targets that cannot be seen.

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:25:52 +03:00
parent bd4b3bd7f9
commit 812598774e
11 changed files with 268 additions and 176 deletions
@@ -778,6 +778,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