aboutsummaryrefslogtreecommitdiff
path: root/src
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
commit78a231616a73628ef1f861c85188b7d28c25180e (patch)
treee6c39183c2ab15896b7d28c167110449777be2e0 /src
parent5503770c826201ab40e141937e6cdd2b0e9788f6 (diff)
downloadskyhanni-78a231616a73628ef1f861c85188b7d28c25180e.tar.gz
skyhanni-78a231616a73628ef1f861c85188b7d28c25180e.tar.bz2
skyhanni-78a231616a73628ef1f861c85188b7d28c25180e.zip
stop highlighting levers in dungeon boss room
Diffstat (limited to 'src')
-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()