diff --git a/CHANGELOG.md b/CHANGELOG.md index 4af2b9381c23..c0b0a307cdf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -150,6 +150,8 @@ + Improve accuracy of movement speed display. - alexia + Added toggle to hide autopet messages. - CalMWolfs + Not only Slayer, also Fishing and Diana item drops will now show in chat & title when over a custom defined price. - hannibal2 ++ Added Support to read Badlion sendcoords format. - Cad ++ Added an option to not show cooldown when ability is ready. - Obsidian ### Fixes @@ -176,6 +178,9 @@ + Fix typo with Not Clickable Items in Composter. - absterge + Added missing preview number from Visitor Drop Statistics. - absterge + Fixed error message with newly bought fungi cutter. - hannibal2 ++ Ignoring custom NEU items like copper that causes wrong coins per copper price. - hannibal2 ++ Fixed rancher boots speed stack size. - walker ++ Fixed overflow garden level detection. - hannibal2 #### Bingo Fixes @@ -194,6 +199,11 @@ + Fixed Water Hydra warning showing up multiple times. - Cad +#### Diana Fixes + ++ Fixed the closest burrow warp point being off, especially for the castle. - hannibal2 ++ Fixed show inquisitor waypoints outside the hub. - Cad + #### Misc Fixes + Fixed Item Tracker not ignoring manual sack movements. - hannibal2 @@ -208,6 +218,9 @@ + Fixed Slayer Profit Tracker display and price problems with Wisp's Ice Flavored Water Potion. - hannibal2 + Fixed an error message when closing the wheat minion in the Hub. - Thunderblade73 + Fixed locraw sending outside Hypixel. - walker ++ Fixed finished city project still reminding and suggests buying items. - hannibal2 + + Open the city project inventory once again to fix warnings correctly. ++ Fixed kick alert triggering instantly. - alexia #### Config Fixes diff --git a/build.gradle.kts b/build.gradle.kts index e0e07132ab68..8a1dad0cc0e6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.22.Beta.11" +version = "0.22.Beta.12" val gitHash by lazy { val baos = ByteArrayOutputStream() diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 6c27a0be100b..64b3020b44c2 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -354,7 +354,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.22.Beta.11", + version = "0.22.Beta.12", ) class SkyHanniMod { @Mod.EventHandler