Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyunge committed Apr 13, 2024
1 parent 12a42e8 commit ba2d93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/entities/acf_gearbox_update/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ do -- Movement -----------------------------------------
for Ent, _ in pairs( self.GearboxOut ) do
Boxes = Boxes + 1
local GearboxTorque = self.TorqueOutput / table.Count( self.GearboxOut )
local RPM, Load = Ent:Calc( GearboxTorque, DeltaTime ) * GearRatio
local RPM = Ent:Calc( GearboxTorque, DeltaTime ) * GearRatio
self.InputRPM = self.InputRPM + RPM
self.Load = Ent.Load * Clutch
end
Expand Down

0 comments on commit ba2d93c

Please sign in to comment.