CRASHFIX: is_player_spectated checks if someone is inside an arena first

master
Zughy 2022-01-28 00:05:03 +01:00
parent 77c155573c
commit 177eb6d513
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ end
function arena_lib.is_player_spectated(p_name)
return next(players_spectated[p_name])
return players_spectated[p_name] and next(players_spectated[p_name])
end