Build 0.18.1.0

This commit is contained in:
Markus Isberg
2022-05-13 22:55:07 +09:00
parent 7547a9b78a
commit d4f6f4cf88
32 changed files with 1263 additions and 25 deletions
@@ -290,7 +290,7 @@ namespace Barotrauma
public override void AddToGUIUpdateList(bool ignoreChildren = false, int order = 0)
{
base.AddToGUIUpdateList(ignoreChildren, order);
SubMenu?.AddToGUIUpdateList();
SubMenu?.AddToGUIUpdateList(order: 2);
}
public static void AddActiveToGUIUpdateList()
@@ -300,7 +300,7 @@ namespace Barotrauma
CurrentContextMenu = null;
}
CurrentContextMenu?.AddToGUIUpdateList();
CurrentContextMenu?.AddToGUIUpdateList(order: 2);
}
}
}