File tree 1 file changed +3
-4
lines changed
src/main/java/dev/stardust/modules
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public RocketMan() {
77
77
.visible (keyboardControl ::get )
78
78
.sliderRange (0 , 50 )
79
79
.range (0 , 1000 )
80
- .defaultValue (15 )
80
+ .defaultValue (20 )
81
81
.build ()
82
82
);
83
83
@@ -87,7 +87,7 @@ public RocketMan() {
87
87
.visible (keyboardControl ::get )
88
88
.sliderRange (0 , 50 )
89
89
.range (0 , 1000 )
90
- .defaultValue (15 )
90
+ .defaultValue (10 )
91
91
.build ()
92
92
);
93
93
@@ -111,7 +111,7 @@ public RocketMan() {
111
111
new IntSetting .Builder ()
112
112
.name ("Rocket Usage Cooldown" )
113
113
.description ("How often (in ticks) to allow using firework rockets." )
114
- .range (2 , 200 )
114
+ .range (2 , 1200 )
115
115
.sliderRange (2 , 100 )
116
116
.defaultValue (10 )
117
117
.visible (() -> !usageMode .get ().equals ("Auto Use" ))
@@ -300,7 +300,6 @@ private boolean replaceElytra() {
300
300
double percent = Math .floor ((current / (double ) max ) * 100 );
301
301
302
302
if (percent <= replaceThreshold .get ()) continue ;
303
-
304
303
InvUtils .move ().from (n ).toArmor (2 );
305
304
return true ;
306
305
}
You can’t perform that action at this time.
0 commit comments