Func_Reload

This commit is contained in:
Fesiug 2024-01-15 01:44:11 -05:00
parent 2736a1f2f0
commit 2adaecd312
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ function SWEP:Reload( hand )
local wep_table = self:bWepTable( hand ) local wep_table = self:bWepTable( hand )
local wep_class = self:bWepClass( hand ) local wep_class = self:bWepClass( hand )
if wep_table then if wep_table then
if self:bWepClass( hand ) and self:bWepClass( hand ).Func_Reload then
if self:bWepClass( hand ).Func_Reload( self, hand ) then return end
end
if wep_class.Custom_Reload then if wep_class.Custom_Reload then
if wep_class.Custom_Reload( self, wep_table ) then return end if wep_class.Custom_Reload( self, wep_table ) then return end
end end