diff options
| author | NetheriteMiner <88792142+NetheriteMiner@users.noreply.github.com> | 2023-09-26 04:10:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-26 10:10:19 +0200 |
| commit | 2b2c1cc43c08874a82123356adc7af24cfe09227 (patch) | |
| tree | dbf6986ff16f16c1ee3946aa21b624db8813cb85 /src/main/java/at/hannibal2/skyhanni/test | |
| parent | 0ecab5ab4f94dce8b4b01bdad5d4b03a590e8345 (diff) | |
| download | skyhanni-2b2c1cc43c08874a82123356adc7af24cfe09227.tar.gz skyhanni-2b2c1cc43c08874a82123356adc7af24cfe09227.tar.bz2 skyhanni-2b2c1cc43c08874a82123356adc7af24cfe09227.zip | |
Rich Presence Dynamic Priority Box and Dungeons #429
* Rich Presence Dynamic Priority Box and Dungeons
* Merge branch 'beta' into discordrpc
* Merge branch 'beta' into discordrpc
* code cleanup
* Fix according to requested changes
* I blame IntelliJ auto formatting
* Merge branch 'beta' into discordrpc
* resolve merge conflict
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt index 8870e2d79..475e9123c 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt @@ -6,7 +6,7 @@ import at.hannibal2.skyhanni.events.GuiRenderEvent import at.hannibal2.skyhanni.events.LorenzChatEvent import at.hannibal2.skyhanni.events.PlaySoundEvent import at.hannibal2.skyhanni.events.ReceiveParticleEvent -import at.hannibal2.skyhanni.features.dungeon.DungeonData +import at.hannibal2.skyhanni.features.dungeon.DungeonAPI import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorColorNames import at.hannibal2.skyhanni.utils.* import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName @@ -224,9 +224,9 @@ class SkyHanniDebugsAndTests { if (LorenzUtils.inDungeons) { builder.append("\n") builder.append("in dungeon!\n") - builder.append(" dungeonFloor: ${DungeonData.dungeonFloor}\n") - builder.append(" started: ${DungeonData.started}\n") - builder.append(" inBossRoom: ${DungeonData.inBossRoom}\n") + builder.append(" dungeonFloor: ${DungeonAPI.dungeonFloor}\n") + builder.append(" started: ${DungeonAPI.started}\n") + builder.append(" inBossRoom: ${DungeonAPI.inBossRoom}\n") } } |
