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

11 lines
256 B
Lua

hook.Add("InitPostEntityMap", "Adding", function()
for _, ent in pairs(ents.FindByClass("item_ammo_crate")) do ent:Remove() end
for _, ent in pairs(ents.FindByClass("prop_physics*")) do
if ent:GetPos().z < -300 then
ent:Remove()
end
end
end)