Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oqyh authored May 28, 2024
1 parent 7543a52 commit 2fffbbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Game-Manager-GoldKingZ.cs
Original file line number Diff line number Diff line change
Expand Up @@ -601,11 +601,11 @@ private HookResult OnEventPlayerDeath(EventPlayerDeath @event, GameEventInfo inf
{
if (player == null
|| !player.IsValid
|| player.PawnIsAlive
|| player.PlayerPawn == null
|| !player.PlayerPawn.IsValid
|| player.PlayerPawn.Value == null
|| !player.PlayerPawn.Value.IsValid)
|| !player.PlayerPawn.Value.IsValid
|| player.PawnIsAlive)
{
return;
}
Expand Down

0 comments on commit 2fffbbb

Please sign in to comment.