Skip to content

Commit

Permalink
Update AutoClicker.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
C00LC0D35 authored Nov 15, 2023
1 parent bcc4b79 commit 6f39837
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ object AutoClicker : Module() {
"percent" -> (System.currentTimeMillis() - leftLastSwing >= leftDelay * blockPercentStartValue.get().toDouble() && System.currentTimeMillis() - leftLastSwing <= leftDelay * blockPercentEndValue.get().toDouble())
"ticks" -> (blockTicks <= blockTicksValue.get())
"miliseconds" -> (System.currentTimeMillis() - leftLastSwing >= blockMsValue.get().toDouble())
else -> false
}

if ( !blockOnClick.get() || Mouse.isButtonDown(1)) {
Expand Down

0 comments on commit 6f39837

Please sign in to comment.