aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-09-15 15:38:49 +0200
committerLorenz <lo.scherf@gmail.com>2022-09-15 15:38:49 +0200
commite3169440f8c80fe1865b319c54e47bc385a00ef6 (patch)
treee6c39183c2ab15896b7d28c167110449777be2e0
parent319c159a115d160fab8756a712e3423c8af45277 (diff)
downloadSkyHanni-e3169440f8c80fe1865b319c54e47bc385a00ef6.tar.gz
SkyHanni-e3169440f8c80fe1865b319c54e47bc385a00ef6.tar.bz2
SkyHanni-e3169440f8c80fe1865b319c54e47bc385a00ef6.zip
stop highlighting levers in dungeon boss room
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt3
1 files changed, 1 insertions, 2 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 4af9d5efd..31c9fd92a 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt
@@ -39,8 +39,7 @@ class DungeonHighlightClickedBlocks {
fun onSendPacket(event: PacketEvent.SendEvent) {
if (!SkyHanniMod.feature.dungeon.highlightClickedBlocks) return
if (!LorenzUtils.inDungeons) return
-// TODO add
-// if (DungeonAPI.inBossRoom) return
+ if (!DungeonData.inBossRoom) return
if (event.packet !is C08PacketPlayerBlockPlacement || event.packet.stack == null) return
val position = event.packet.position.toLorenzVec()