zombiesurvival-evolved/gamemodes/zombiesurvival/gamemode/maps/zs_farmhouse_v2.lua

10 lines
307 B
Lua
Raw Normal View History

2014-10-02 08:49:54 +08:00
hook.Add("InitPostEntityMap", "Adding", function()
for _, ent in pairs(ents.FindByClass("item_ammo_crate")) do ent:Remove() end
for _, ent in pairs(ents.FindByClass("trigger_hurt")) do ent:Remove() end
for _, ent in pairs(ents.FindInSphere(Vector(447.7879, -630.0, 0), 32)) do ent:Remove() end
end)