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 | d431ec1e4f70a6159aa20a8dd071bc85788b9422 (patch) | |
tree | f0019da93e701e2f8bf98b643ec9f8367d3a8179 /src/main/java/at/hannibal2/skyhanni | |
parent | 8de53239f61c0f424dab6cf2ae83f45feb4d232b (diff) | |
download | skyhanni-d431ec1e4f70a6159aa20a8dd071bc85788b9422.tar.gz skyhanni-d431ec1e4f70a6159aa20a8dd071bc85788b9422.tar.bz2 skyhanni-d431ec1e4f70a6159aa20a8dd071bc85788b9422.zip |
Design change at bingo card and fix sneak not working when bingo next step not enabled.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-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") |