(8fd5fa292) Fix a stack overflow issue.

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:40:19 +03:00
parent ddd84a4f9e
commit 7d0d669cdc
14 changed files with 148 additions and 307 deletions
@@ -119,7 +119,7 @@ namespace Barotrauma
subObjectives.Sort((x, y) => y.GetPriority().CompareTo(x.GetPriority()));
if (ConcurrentObjectives)
{
subObjectives.ForEach(so => SortSubObjectives());
subObjectives.ForEach(so => so.SortSubObjectives());
}
else
{