Skip to content

Commit

Permalink
feat(ElytraFly): zero speed (#5498)
Browse files Browse the repository at this point in the history
  • Loading branch information
lorbeeren authored Jan 31, 2025
1 parent 5e4f5b2 commit c3120a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ object ModuleElytraFly : ClientModule("ElytraFly", Category.MOVEMENT) {
private val instantStop by boolean("InstantStop", true)

object Speed : ToggleableConfigurable(this, "Speed", true) {
val vertical by float("Vertical", 0.5f, 0.1f..5f)
val horizontal by float("Horizontal", 1f, 0.1f..8f)
val vertical by float("Vertical", 0.5f, 0.0f..5f)
val horizontal by float("Horizontal", 1f, 0.0f..8f)
}

init {
Expand Down

0 comments on commit c3120a6

Please sign in to comment.