diff --git a/mod/Jailbreak.LastGuard/LastGuard.cs b/mod/Jailbreak.LastGuard/LastGuard.cs index 6b057197..37ba6f34 100644 --- a/mod/Jailbreak.LastGuard/LastGuard.cs +++ b/mod/Jailbreak.LastGuard/LastGuard.cs @@ -162,7 +162,8 @@ public HookResult OnPlayerDeathEvent(EventPlayerDeath @event, GameEventInfo info) { var player = @event.Userid; if (player == null) return HookResult.Continue; - checkLastGuard(@event.Userid); + + Server.NextFrame(() => checkLastGuard(@event.Userid)); if (!IsLastGuardActive) return HookResult.Continue;