(a34001e8f) Fixed headers not being translated in the repair interface

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:01:36 +03:00
parent a70f4f315e
commit 3dc82efdbd
12 changed files with 161 additions and 236 deletions
@@ -93,7 +93,10 @@ namespace Barotrauma.Items.Components
canBeSelected = true;
this.item = item;
header = element.GetAttributeString("name", "");
header =
TextManager.Get(element.GetAttributeString("header", ""), returnNull: true) ??
TextManager.Get(item.Prefab.ConfigElement.GetAttributeString("header", ""), returnNull: true) ??
element.GetAttributeString("name", "");
InitProjSpecific(element);
}