improved humanoid animations, some map stats in map editor, gap connections visible in editor, editing wire nodes in editor, pumps don't have to be manually linked, coroutine exception handling

This commit is contained in:
Regalis
2015-09-15 17:24:52 +03:00
parent d29ee03681
commit 16bf562837
21 changed files with 254 additions and 136 deletions

View File

@@ -56,12 +56,18 @@ namespace Subsurface
break;
}
}
}
try
{
Coroutines[i].MoveNext();
}
Coroutines[i].MoveNext();
catch (Exception e)
{
DebugConsole.ThrowError("Coroutine "+Coroutines[i]+" threw an exception: "+e.Message);
Coroutines.RemoveAt(i);
}
}
}