zombiesurvival-evolved/gamemodes/zombiesurvival/gamemode/maps/zs_obj_mental_hospital_v6.lua
William Moodhe e9da54c2f9 ZS updates for 2014-2018
Too many changes to list.
2018-05-01 18:32:59 -04:00

7 lines
197 B
Lua

hook.Add("SetupProps", "RemoveBoomstick", function()
for _, ent in pairs(ents.FindByClass("prop_weapon")) do
if ent:GetWeaponType() == "weapon_zs_boomstick" then
ent:Remove()
end
end
end)