Progress (compiles now)

This commit is contained in:
Regalis
2016-06-09 22:15:50 +03:00
parent c9fd599276
commit 7349cdd310
22 changed files with 237 additions and 240 deletions
+11 -11
View File
@@ -86,21 +86,21 @@ namespace Barotrauma
}
}
try
{
//try
//{
Coroutines[i].Coroutine.MoveNext();
}
//}
catch (Exception e)
{
DebugConsole.ThrowError("Coroutine " + Coroutines[i].Name + " threw an exception: " + e.Message);
//catch (Exception e)
//{
// DebugConsole.ThrowError("Coroutine " + Coroutines[i].Name + " threw an exception: " + e.Message);
#if DEBUG
throw e;
#endif
//#if DEBUG
// throw e;
//#endif
Coroutines.RemoveAt(i);
}
// Coroutines.RemoveAt(i);
// }
}
}