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

7 lines
279 B
Lua

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