Skip to content

Commit 84891d2

Browse files
author
nxyi
committed
fix magnet range values
1 parent 4eda8b4 commit 84891d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/dark/zewo2/modules/Magnet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public class Magnet extends Module {
2525
private final Setting<Double> range = sgGeneral.add(new DoubleSetting.Builder()
2626
.name("range")
2727
.description("Range, in which items will be sucked.")
28-
.defaultValue(3.5)
29-
.range(1, 128)
28+
.defaultValue(6)
29+
.range(1, 10)
3030
.sliderRange(1, 10)
3131
.build()
3232
);

0 commit comments

Comments
 (0)