Skip to content

Commit

Permalink
fix: call it speed for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
1zun4 committed Jan 24, 2025
1 parent 88fd15e commit 5efdfcf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ object ModuleInventoryMove : ClientModule("InventoryMove", Category.MOVEMENT) {

private object TimerFeature : ToggleableConfigurable(this, "Timer", false) {

private val timer by float("Timer", 1.0f, 0.1f..2.0f)
private val speed by float("Speed", 1.0f, 0.1f..2.0f)

@Suppress("unused")
private val tickHandler = tickHandler {
if (mc.currentScreen is HandledScreen<*>) {
Timer.requestTimerSpeed(timer, Priority.IMPORTANT_FOR_USAGE_2, ModuleInventoryMove)
Timer.requestTimerSpeed(speed, Priority.IMPORTANT_FOR_USAGE_2, ModuleInventoryMove)
}
}

Expand Down

0 comments on commit 5efdfcf

Please sign in to comment.