Skip to content

Commit

Permalink
fixxx
Browse files Browse the repository at this point in the history
  • Loading branch information
Misfiy committed Sep 7, 2023
1 parent 6b5beb9 commit ae1c789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CoroutinesHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ public static void KillCoroutines()
foreach(CoroutineHandle coroutine in Coroutines)
{
if(coroutine.IsRunning) Timing.KillCoroutines(coroutine);
Coroutines.Remove(coroutine);
Log.Debug("Killed a coroutine successfully!");
}
Coroutines.Clear();
Log.Debug("Killed all coroutines");
}
}

0 comments on commit ae1c789

Please sign in to comment.