Clean this up

This commit is contained in:
Fesiug 2023-11-14 01:12:39 -05:00
parent da75603569
commit 9aeddee805
1 changed files with 6 additions and 10 deletions

View File

@ -78,17 +78,13 @@ function SWEP:BHolster( hand )
return -- What the hell are you holstering..? return -- What the hell are you holstering..?
end end
local p = self:GetOwner() local p = self:GetOwner()
local inv = p:INV_Get()
local item = inv[hand and self:GetWep2() or self:GetWep1()] local item = p:INV_Get()[ self:D_GetID( hand ) ]
local class = WEAPONS[item.Class] if item then
local class = WEAPONS[item.Class]
if class.Holster then class.Holster( self, self:BTable( false ) ) end if class.Holster then class.Holster( self, self:BTable( hand ) ) end
end
self:D_SetID( hand, "" ) self:D_SetID( hand, "" )
self:D_SetClip( hand, 0 )
-- PROTO: Make grenade/melee/firearm logic way way better.
if class.Features == "firearm" then
self:D_SetClip( hand, 0 )
end
end end