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

6 lines
263 B
Lua

-- 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)