Fix previous commit

This commit is contained in:
marco_a 2024-09-23 16:33:36 +02:00
parent de7858e8ba
commit d508ba12f6

View File

@ -58,7 +58,7 @@ end
function arena_lib.get_teamID(p_name)
if not arena_lib.is_player_in_arena(p_name) then return end
local _, arena = arena_lib.get_arena_by_player(p_name)
local arena = arena_lib.get_arena_by_player(p_name)
return arena.players[p_name].teamID
end