Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
fix: show destroyed bodies as dead
Browse files Browse the repository at this point in the history
  • Loading branch information
NotSugden committed Jun 29, 2021
1 parent cd207bc commit 7b1032d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions source/Patches/MeetingIntroPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ public static void Prefix(
if (!players.Contains(playerData))
players.Add(playerData);
}
<<<<<<< HEAD
deadPlayers = players.ToArray();
=======
deadPlayers = new Il2CppReferenceArray<PlayerData>(players.ToArray());
>>>>>>> a092cc6 (fix: show destroyed bodies as dead)
DeadPlayers.Clear();
}
}
Expand Down

0 comments on commit 7b1032d

Please sign in to comment.