We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8261eb3 commit 3715e57Copy full SHA for 3715e57
src/gamemodes/amongus/gamemode/sv_player.moon
@@ -29,8 +29,9 @@ GM.Player_UnhideEveryone = =>
29
-- @param ply Player entity.
30
GM.Player_HideForAlivePlayers = (ply) =>
31
for otherPly in *player.GetAll!
32
+ continue if ply == otherPly
33
+
34
otherPlayerTable = otherPly\GetAUPlayerTable!
- continue if otherPlayerTable == playerTable
35
36
if not otherPlayerTable or @GameData.DeadPlayers[otherPlayerTable]
37
ply\SetPreventTransmit otherPly, false
0 commit comments