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

16 lines
240 B
Lua

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