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

7 lines
263 B
Lua
Raw Normal View History

2014-10-02 08:49:54 +08:00
-- Removes teleports and other annoying ZM garbage.
hook.Add("InitPostEntityMap", "Adding", function()
for _, ent in pairs(ents.FindByClass("trigger_push")) do ent:Remove() end
for _, ent in pairs(ents.FindByClass("trigger_teleport")) do ent:Remove() end
end)