zombiesurvival-evolved/gamemodes/zombiesurvival/gamemode/maps/zs_fireforest_zeta.lua
2014-10-01 20:49:54 -04:00

9 lines
216 B
Lua

hook.Add("InitPostEntityMap", "Adding", function()
for _, ent in pairs(ents.FindInSphere(Vector(-360.8554, -766.1578, 35.3844))) do
if ent:GetClass() == "info_player_human" then
ent:Remove()
end
end
end)