aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-08 20:17:08 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-08 20:17:08 +0100
commit33a3bb5eb33cb620d2a778949980a768253cd567 (patch)
tree48031743620d4d7f16fa5a658c3429c62eb342a3 /src/main/java/at/hannibal2
parent63040e717d9ab98aefd6eca379501ce89e03656d (diff)
downloadskyhanni-33a3bb5eb33cb620d2a778949980a768253cd567.tar.gz
skyhanni-33a3bb5eb33cb620d2a778949980a768253cd567.tar.bz2
skyhanni-33a3bb5eb33cb620d2a778949980a768253cd567.zip
removed debug stuff
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/bingo/card/BingoCardTips.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/card/BingoCardTips.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/card/BingoCardTips.kt
index b0a0cd42e..6ab2a9a5a 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/bingo/card/BingoCardTips.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/card/BingoCardTips.kt
@@ -27,12 +27,12 @@ class BingoCardTips {
val slot = gui.slotUnderMouse
val goal = BingoAPI.bingoGoals.firstOrNull { it.slot == slot.slotNumber } ?: return
- val toolTip = event.toolTip ?: return
+ val toolTip = event.toolTip
val bingoTip = goal.getTip() ?: return
val communityGoal = goal.type == GoalType.COMMUNITY
val difficulty = Difficulty.valueOf(bingoTip.difficulty.uppercase())
- toolTip[0] = toolTip[0] + " §7(" + difficulty.displayName + "§7) ${goal.done}"
+ toolTip[0] = toolTip[0] + " §7(" + difficulty.displayName + "§7)"
var index = if (!communityGoal) {
toolTip.indexOf("§5§o§7Reward")