From 49b702106a695c6f5dac35adea861880c4de79c6 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 16 Apr 2023 12:29:57 +0200 Subject: [PATCH] Update Weapon.lua - Decreased min possible time step to 0.00001 seconds --- Moose Development/Moose/Wrapper/Weapon.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moose Development/Moose/Wrapper/Weapon.lua b/Moose Development/Moose/Wrapper/Weapon.lua index b8437d7ca..3e6e98092 100644 --- a/Moose Development/Moose/Wrapper/Weapon.lua +++ b/Moose Development/Moose/Wrapper/Weapon.lua @@ -804,7 +804,7 @@ function WEAPON:_TrackWeapon(time) -- Return next time the function is called or nil to stop the scheduler. if self.tracking then - if self.dtTrack and self.dtTrack>0.001 then + if self.dtTrack and self.dtTrack>=0.00001 then return time+self.dtTrack else return nil