Skip to content

Commit 466ffa5

Browse files
committed
update some settings
1 parent f4e4aa4 commit 466ffa5

1 file changed

Lines changed: 13 additions & 7 deletions

File tree

  • src/main/java/meteordevelopment/meteorclient/systems/modules/movement/elytrafly

src/main/java/meteordevelopment/meteorclient/systems/modules/movement/elytrafly/ElytraFly.java

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,11 @@ public class ElytraFly extends Module {
163163

164164
public final Setting<Double> pitch40lowerBounds = sgGeneral.add(new DoubleSetting.Builder()
165165
.name("pitch40-lower-bounds")
166-
.description("The bottom height boundary for pitch40.")
167-
.defaultValue(80)
166+
.description(
167+
"The bottom height boundary for pitch40. You must be at least 40 blocks above this boundary when starting the module.\n" +
168+
"After descending below this boundary you will start pitching upwards."
169+
)
170+
.defaultValue(180)
168171
.min(-128)
169172
.sliderMax(360)
170173
.visible(() -> flightMode.get() == ElytraFlightModes.Pitch40)
@@ -173,8 +176,11 @@ public class ElytraFly extends Module {
173176

174177
public final Setting<Double> pitch40upperBounds = sgGeneral.add(new DoubleSetting.Builder()
175178
.name("pitch40-upper-bounds")
176-
.description("The upper height boundary for pitch40.")
177-
.defaultValue(120)
179+
.description(
180+
"The upper height boundary for pitch40. You must be above this boundary when starting the module.\n" +
181+
"When ascending above this boundary, if you are not already, you will start pitching downwards."
182+
)
183+
.defaultValue(220)
178184
.min(-128)
179185
.sliderMax(360)
180186
.visible(() -> flightMode.get() == ElytraFlightModes.Pitch40)
@@ -183,17 +189,17 @@ public class ElytraFly extends Module {
183189

184190
public final Setting<Double> pitch40rotationSpeedUp = sgGeneral.add(new DoubleSetting.Builder()
185191
.name("pitch40-rotate-speed-up")
186-
.description("The speed for pitch rotation upwards (degrees per tick)")
192+
.description("The speed for pitch rotation upwards (degrees per tick).")
187193
.defaultValue(5.45)
188194
.min(1)
189195
.sliderMax(20)
190196
.visible(() -> flightMode.get() == ElytraFlightModes.Pitch40)
191197
.build()
192198
);
193-
199+
194200
public final Setting<Double> pitch40rotationSpeedDown = sgGeneral.add(new DoubleSetting.Builder()
195201
.name("pitch40-rotate-speed-down")
196-
.description("The speed for pitch rotation downwards (degrees per tick)")
202+
.description("The speed for pitch rotation downwards (degrees per tick).")
197203
.defaultValue(0.90)
198204
.min(0.5)
199205
.sliderMax(2)

0 commit comments

Comments
 (0)