e9da54c2f9
Too many changes to list.
7 lines
197 B
Lua
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)
|