(7aea3c20b) Fixed subs with the HideInMenus tag being hidden in debug builds but not in release builds (instead of the other way around)

This commit is contained in:
Joonas Rikkonen
2019-05-23 15:15:30 +03:00
parent 9ba0b9a006
commit 950425174d
@@ -253,7 +253,7 @@ namespace Barotrauma
public void UpdateSubList(IEnumerable<Submarine> submarines)
{
#if DEBUG
#if !DEBUG
var subsToShow = submarines.Where(s => !s.HasTag(SubmarineTag.HideInMenus));
#else
var subsToShow = submarines;