CopsNRobbers/gamemodes/copsnrobbers/entities/weapons/cnr/sh_think.lua

16 lines
240 B
Lua
Raw Normal View History

2023-12-21 13:58:05 -05:00
SWEP.RecoilTable = {}
function SWEP:Think()
local p = self:GetOwner()
if CLIENT and IsFirstTimePredicted() then
for i, v in pairs( self.RecoilTable ) do
end
end
if !p:KeyDown( IN_ATTACK ) then
self:SetBurstCount( 0 )
end
end