zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_map_base/init.lua
Ben 1d538e1c90 Created inert weapon base for hammer made weapons
Weapons using this base:
- Cannot be selected from the player's HUD
- Cannot be dropped or seen in-game
- Switch to "weapon_zs_fists" if switched to forcefully
2014-11-16 02:41:28 +00:00

10 lines
158 B
Lua

AddCSLuaFile("cl_init.lua")
AddCSLuaFile("shared.lua")
include("shared.lua")
function SWEP:OnDrop()
if self:IsValid() then
self.Weapon:Remove()
end
end