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

8 lines
283 B
Lua

hook.Add("InitPostEntityMap", "Adding", function()
-- I think its about time that this map be purged of blue shelves.
for _, ent in pairs(ents.FindByClass("prop_physics")) do
if ent:GetModel() == "models/props_wasteland/kitchen_shelf001a.mdl"then
ent:Remove()
end
end
end)