diff options
author | Empa <42304516+ItsEmpa@users.noreply.github.com> | 2024-09-21 11:18:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-21 11:18:41 +0200 |
commit | 208fc04e7db767abda24fdbae141d60898371d61 (patch) | |
tree | 1f40e682a3dec8d6ee673672ca9a0ba493e183a5 /src/main/java/at/hannibal2/skyhanni/features/dungeon | |
parent | f298d65f6b3029474f6695ccf3cb6ac5f0400e42 (diff) | |
download | skyhanni-208fc04e7db767abda24fdbae141d60898371d61.tar.gz skyhanni-208fc04e7db767abda24fdbae141d60898371d61.tar.bz2 skyhanni-208fc04e7db767abda24fdbae141d60898371d61.zip |
Backend: AreaChangeEvent and Islands in HandleEvent (#2535)
Co-authored-by: ItsEmpa <itsempa@users.noreply.github.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/dungeon')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonShadowAssassinNotification.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonShadowAssassinNotification.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonShadowAssassinNotification.kt index abe83df8c..ca888392f 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonShadowAssassinNotification.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonShadowAssassinNotification.kt @@ -16,7 +16,7 @@ object DungeonShadowAssassinNotification { private val config get() = SkyHanniMod.feature.dungeon - @HandleEvent(onlyOnIslands = [IslandType.CATACOMBS]) + @HandleEvent(onlyOnIsland = IslandType.CATACOMBS) fun onWorldBorderChange(event: PacketReceivedEvent) { if (!isEnabled()) return if (DungeonAPI.dungeonFloor?.contains("3") == true && DungeonAPI.inBossRoom) return |