Improved user experience.

This commit is contained in:
Andrew Lalis 2022-03-05 14:29:17 +01:00
parent affe220bd1
commit 565620bda8
1 changed files with 3 additions and 1 deletions

View File

@ -24,11 +24,13 @@ public class BlockPlaceListener implements NativeMouseInputListener {
randSum += v.chance(); randSum += v.chance();
} }
this.settings = settings; this.settings = settings;
System.out.println("-".repeat(20));
for (var v : settings) { for (var v : settings) {
float percent = (v.chance() / randSum) * 100.0f; float percent = (v.chance() / randSum) * 100.0f;
System.out.printf("Will use slot %d, %.1f%% of the time.\n", v.slot(), percent); System.out.printf("Will use slot %d, %.1f%% of the time.\n", v.slot(), percent);
} }
System.out.printf("Starting at slot %d. Please select this slot if it is not selected already, then start right-clicking. Do not hold right-click.\n", currentSlot); System.out.println("-".repeat(20));
System.out.printf("Starting at slot %d.\n! Please select this slot if it is not selected already, then start right-clicking.\n! Do not hold right-click.\n", currentSlot);
} }
private int getNextSlot() { private int getNextSlot() {