Skip to content

Commit 58aff3d

Browse files
Fix weird indent
1 parent 7970f16 commit 58aff3d

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/meteordevelopment/meteorclient/systems/modules/world

1 file changed

+2
-2
lines changed

src/main/java/meteordevelopment/meteorclient/systems/modules/world/Nuker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public class Nuker extends Module {
150150

151151
private final Setting<ListMode> listMode = sgWhitelist.add(new EnumSetting.Builder<ListMode>()
152152
.name("list-mode")
153-
.description("Auto select the block you're looking at when active.")
153+
.description("Selection mode.")
154154
.defaultValue(ListMode.Blacklist)
155155
.build());
156156

@@ -523,4 +523,4 @@ public static int chebyshevDist(int x1, int y1, int z1, int x2, int y2, int z2)
523523
int dZ = Math.abs(z2 - z1);
524524
return Math.max(Math.max(dX, dY), dZ);
525525
}
526-
}
526+
}

0 commit comments

Comments
 (0)