(2d7903da7) Replaced some horizontal light components with vertical ones in tutorial outpost

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:02:10 +03:00
parent d70c463f41
commit 6fc8b8b573
16 changed files with 208 additions and 479 deletions
@@ -106,18 +106,6 @@ namespace Barotrauma
subObjectives.Add(objective);
}
public void RemoveSubObjective<T>(ref T objective) where T : AIObjective
{
if (objective != null)
{
if (subObjectives.Contains(objective))
{
subObjectives.Remove(objective);
}
objective = null;
}
}
public void SortSubObjectives()
{
if (subObjectives.None()) { return; }