Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit cc940b6

Browse files
committed
Fix typo to remove typoed duplicate lua binding
1 parent 2d4517e commit cc940b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Techion.rte/Devices/Explosives/NanoSwarmGrenade/NanoSwarm.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function Update(self)
209209
end
210210

211211
--Counteract gravity.
212-
wasp.Vel = Vector(wasp.Vel.X, wasp.Vel.Y - SceneMan.Scene.GlocalAcc.Y * TimerMan.DeltaTimeSecs);
212+
wasp.Vel = Vector(wasp.Vel.X, wasp.Vel.Y - SceneMan.Scene.GlobalAcc.Y * TimerMan.DeltaTimeSecs);
213213

214214
if wasp.Vel.Largest > self.maxSpeed * speedMod * attackMax then
215215
wasp.Vel = (wasp.Vel/wasp.Vel.Largest) * self.maxSpeed * speedMod * attackMax;

0 commit comments

Comments
 (0)