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

8 lines
279 B
Lua
Raw Normal View History

2014-10-02 08:49:54 +08:00
-- This profile removes the suitcases in the map to break the objectives from Zombie Master. Not doing this ruins the map.
hook.Add("InitPostEntityMap", "Adding", function()
for _, ent in pairs(ents.FindByModel("models/props_c17/suitcase001a.mdl")) do
ent:Remove()
end
end)