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

9 lines
215 B
Lua
Raw Normal View History

2015-04-19 12:38:31 +08:00
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)