Skip to content

Commit

Permalink
fix: remove random sleep from aim bot thread
Browse files Browse the repository at this point in the history
  • Loading branch information
Jire committed Apr 1, 2021
1 parent ce48d3d commit 5a46d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/overwatcheat/aimbot/AimBotThread.kt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class AimBotThread(
}
useAimData(AimBotState.aimData)
}
val sleepTime = aimDurationMillis + random[1] - elapsed
val sleepTime = aimDurationMillis - elapsed
if (sleepTime > 0) {
sleep(sleepTime)
}
Expand Down

0 comments on commit 5a46d37

Please sign in to comment.