diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-08 20:17:08 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-08 20:17:08 +0100 |
commit | 33a3bb5eb33cb620d2a778949980a768253cd567 (patch) | |
tree | 48031743620d4d7f16fa5a658c3429c62eb342a3 | |
parent | 63040e717d9ab98aefd6eca379501ce89e03656d (diff) | |
download | skyhanni-33a3bb5eb33cb620d2a778949980a768253cd567.tar.gz skyhanni-33a3bb5eb33cb620d2a778949980a768253cd567.tar.bz2 skyhanni-33a3bb5eb33cb620d2a778949980a768253cd567.zip |
removed debug stuff
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bingo/card/BingoCardTips.kt | 4 |
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") |