aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt
index d97f1b327..3420335ec 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt
@@ -55,10 +55,6 @@ class DungeonHighlightClickedBlocks {
else -> return
}
- // Water room
- if (DungeonAPI.getRoomID() == "-60,-60") {
- return
- }
if (type == ClickedBlockType.WITHER_ESSENCE) {
val text = BlockUtils.getTextureFromSkull(position.toBlockPos())
@@ -70,8 +66,8 @@ class DungeonHighlightClickedBlocks {
}
}
- // TODO hide in water room
-// if (nearWaterRoom() && type == ClickedBlockType.LEVER) return
+ val inWaterRoom = DungeonAPI.getRoomID() == "-60,-60"
+ if (inWaterRoom && type == ClickedBlockType.LEVER) return
val color = getNextColor()
val displayText = color.getChatColor() + "Clicked " + type.display