Skip to content

Commit 4e3af44

Browse files
authored
Update ElytraFlyPlus.java
1 parent c98fcc1 commit 4e3af44

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/main/java/nekiplay/meteorplus/features/modules/movement/elytrafly/ElytraFlyPlus.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class ElytraFlyPlus extends Module {
2525
);
2626
//<editor-fold desc="Wasp">
2727
public final Setting<Double> horizontal_wasp = sgGeneral.add(new DoubleSetting.Builder()
28-
.name("Horizontal-Speed")
28+
.name("horizontal-speed")
2929
.description("How many blocks to move each tick horizontally.")
3030
.defaultValue(1)
3131
.min(0)
@@ -35,7 +35,7 @@ public class ElytraFlyPlus extends Module {
3535
);
3636

3737
public final Setting<Double> fallSpeed_wasp = sgGeneral.add(new DoubleSetting.Builder()
38-
.name("Fall-Speed")
38+
.name("fall-speed")
3939
.description("How many blocks to fall down each tick.")
4040
.defaultValue(0)
4141
.min(0)
@@ -45,15 +45,15 @@ public class ElytraFlyPlus extends Module {
4545
);
4646

4747
public final Setting<Boolean> smartFall_wasp = sgGeneral.add(new BoolSetting.Builder()
48-
.name("Smart-Fall")
48+
.name("smart-fall")
4949
.description("Only falls down when looking down.")
5050
.defaultValue(true)
5151
.visible(() -> flightMode.get() == ElytraFlyModes.Wasp)
5252
.build()
5353
);
5454

5555
public final Setting<Double> up_wasp = sgGeneral.add(new DoubleSetting.Builder()
56-
.name("Up-Speed")
56+
.name("up-speed")
5757
.description("How many blocks to move up each tick.")
5858
.defaultValue(1)
5959
.min(0)
@@ -63,7 +63,7 @@ public class ElytraFlyPlus extends Module {
6363
);
6464

6565
public final Setting<Double> down_wasp = sgGeneral.add(new DoubleSetting.Builder()
66-
.name("Down-Speed")
66+
.name("down-speed")
6767
.description("How many blocks to move down each tick.")
6868
.defaultValue(1)
6969
.min(0)
@@ -86,7 +86,7 @@ public class ElytraFlyPlus extends Module {
8686
);
8787

8888
public final Setting<Double> upMultiplier_control = sgGeneral.add(new DoubleSetting.Builder()
89-
.name("Up-Multiplier")
89+
.name("up-multiplier")
9090
.description("How many times faster should we fly up.")
9191
.defaultValue(1)
9292
.min(0)
@@ -96,7 +96,7 @@ public class ElytraFlyPlus extends Module {
9696
);
9797

9898
public final Setting<Double> downSpeed_control = sgGeneral.add(new DoubleSetting.Builder()
99-
.name("Down-Speed")
99+
.name("down-speed")
100100
.description("How many blocks to move down each tick.")
101101
.defaultValue(1)
102102
.min(0)
@@ -106,9 +106,9 @@ public class ElytraFlyPlus extends Module {
106106
);
107107

108108
public final Setting<Double> fallSpeed_control = sgGeneral.add(new DoubleSetting.Builder()
109-
.name("Fall-Speed")
109+
.name("fall-speed")
110110
.description("How many blocks to fall down each tick.")
111-
.defaultValue(0.01)
111+
.defaultValue(0)
112112
.min(0)
113113
.sliderRange(0, 1)
114114
.visible(() -> flightMode.get() == ElytraFlyModes.Control)

0 commit comments

Comments
 (0)