diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-02 02:14:51 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-02 02:14:51 +0100 |
| commit | 8a556c5b059b5a214db88a7eca7dccbfa26a8e98 (patch) | |
| tree | f0019da93e701e2f8bf98b643ec9f8367d3a8179 | |
| parent | 8ada957117f2e749c7d6113c5978f324eae3ff9f (diff) | |
| download | SkyHanni-8a556c5b059b5a214db88a7eca7dccbfa26a8e98.tar.gz SkyHanni-8a556c5b059b5a214db88a7eca7dccbfa26a8e98.tar.bz2 SkyHanni-8a556c5b059b5a214db88a7eca7dccbfa26a8e98.zip | |
Design change at bingo card and fix sneak not working when bingo next step not enabled.
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bingo/BingoCardDisplay.kt | 4 | ||||
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoCardDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoCardDisplay.kt index 824fd7942..eef8ec213 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoCardDisplay.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoCardDisplay.kt @@ -124,7 +124,7 @@ class BingoCardDisplay { display.add("Community Goals") if (communityGoals.isEmpty()) { - display.add("§7Open the §e/bingo §7card.") + display.add("§cOpen the §e/bingo §ccard.") } else { communityGoals.mapTo(display) { " " + it.description + if (it.done) " §aDONE" else "" } @@ -158,7 +158,7 @@ class BingoCardDisplay { } } if (!config.stepHelper && displayMode == 1) { - displayMode = 0 + displayMode = 2 } if (displayMode == 0) { if (Minecraft.getMinecraft().currentScreen !is GuiChat) { diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt index 91b5b9bd6..5cc3b7ca3 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt @@ -42,12 +42,11 @@ class BingoNextStepHelper { } currentHelp.clear() - currentHelp.add("Bingo Step Helper:") + currentHelp.add("Bingo Step Helper") if (currentSteps.isEmpty()) { - currentHelp.add("§7Open the §e/bingo §7card.") + currentHelp.add("§cOpen the §e/bingo §ccard.") } - for (currentStep in currentSteps) { val text = getName(currentStep) currentHelp.add(" §7$text") |
