Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Improve strafe of Scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
xia-mc committed Nov 1, 2024
1 parent cb1633a commit d2a6e9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public Scaffold() {
this.registerSetting(aimSpeed = new SliderSetting("Aim speed", 20, 5, 20, 0.1, new ModeOnly(rotation, 0).reserve()));
this.registerSetting(moveFix = new ButtonSetting("MoveFix", false, new ModeOnly(rotation, 0).reserve()));
this.registerSetting(motion = new SliderSetting("Motion", 1.0, 0.5, 1.2, 0.01, () -> !moveFix.isToggled()));
this.registerSetting(strafe = new SliderSetting("Strafe", 0, -45, 45, 5));
this.registerSetting(strafe = new SliderSetting("Strafe", 0, -90, 90, 5));
this.registerSetting(sprint = new ModeValue("Sprint", this)
.add(new DisabledSprint("Disabled", this))
.add(new VanillaSprint("Vanilla", this))
Expand Down

0 comments on commit d2a6e9e

Please sign in to comment.