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

9 lines
193 B
Lua

INC_SERVER()
function SWEP:ApplyMeleeDamage(ent, trace, damage)
if ent:IsPlayer() then
ent:GiveStatus("dimvision", 2.5)
end
self.BaseClass.ApplyMeleeDamage(self, ent, trace, damage)
end