Skip to content

Commit 1a244f8

Browse files
committed
RocketMan - Adjusted a few defaults.
1 parent a520d56 commit 1a244f8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/dev/stardust/modules/RocketMan.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public RocketMan() {
7777
.visible(keyboardControl::get)
7878
.sliderRange(0, 50)
7979
.range(0, 1000)
80-
.defaultValue(15)
80+
.defaultValue(20)
8181
.build()
8282
);
8383

@@ -87,7 +87,7 @@ public RocketMan() {
8787
.visible(keyboardControl::get)
8888
.sliderRange(0, 50)
8989
.range(0, 1000)
90-
.defaultValue(15)
90+
.defaultValue(10)
9191
.build()
9292
);
9393

@@ -111,7 +111,7 @@ public RocketMan() {
111111
new IntSetting.Builder()
112112
.name("Rocket Usage Cooldown")
113113
.description("How often (in ticks) to allow using firework rockets.")
114-
.range(2, 200)
114+
.range(2, 1200)
115115
.sliderRange(2, 100)
116116
.defaultValue(10)
117117
.visible(() -> !usageMode.get().equals("Auto Use"))
@@ -300,7 +300,6 @@ private boolean replaceElytra() {
300300
double percent = Math.floor((current / (double) max) * 100);
301301

302302
if (percent <= replaceThreshold.get()) continue;
303-
304303
InvUtils.move().from(n).toArmor(2);
305304
return true;
306305
}

0 commit comments

Comments
 (0)