Fix delay roundend (#9481)

This commit is contained in:
metalgearsloth 2022-07-06 18:17:28 +10:00 committed by GitHub
parent 4c25be1b29
commit 7ef1aded6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -277,8 +277,8 @@ public sealed partial class ShuttleSystem
public bool DelayEmergencyRoundEnd()
{
if (_roundEndCancelToken == null) return false;
_roundEndCancelToken = null;
_roundEndCancelToken?.Cancel();
_roundEndCancelToken = null;
return true;
}
}