Skip to content

Commit 5a46d37

Browse files
committed
fix: remove random sleep from aim bot thread
1 parent ce48d3d commit 5a46d37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/overwatcheat/aimbot/AimBotThread.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class AimBotThread(
4646
}
4747
useAimData(AimBotState.aimData)
4848
}
49-
val sleepTime = aimDurationMillis + random[1] - elapsed
49+
val sleepTime = aimDurationMillis - elapsed
5050
if (sleepTime > 0) {
5151
sleep(sleepTime)
5252
}

0 commit comments

Comments
 (0)