zombiesurvival-evolved/gamemodes/zombiesurvival/gamemode/maps/zs_last_day_z.lua
2015-04-19 00:38:31 -04:00

8 lines
215 B
Lua

hook.Add("InitPostEntityMap", "Adding", function()
for _, ent in pairs(ents.FindByClass("trigger_teleport")) do
ent:Remove()
end
for _, ent in pairs(ents.FindByClass("func_button")) do
ent:Remove()
end
end)