diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 05bc74465..922734fb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,13 +9,16 @@ ### Changes +#### Other Changes + + Added guess seconds to the Visitor Timer when the tab list doesn't show seconds. - hannibal2 + Add option to hide the chat message when toggling /shmouselock. - hannibal2 -### Changes +#### Garden Changes + Added mythic/Maeve visitor support. - walker & hannibal2 + Added option to use custom Blocks per Second value in some Garden GUIs instead of the real one. - hannibal2 ++ Added option to change the item scale of SkyMart Coins per Copper list. - hannibal2 ### Fixes @@ -38,6 +41,8 @@ + Fixed blocking clicks on bazaar with player name "wiki". - hannibal2 + Fixed highlighting some mobs in the dungeon wrongly as area mini bosses. - hannibal2 + Fixed opening the Pet menu no longer updating the current pet display. - hannibal2 ++ Fixed Archfiend Dice and High Class Archfiend Dice counting as slayer drops when rolled. - hannibal2 ++ Fixed dice roll profit counting as Mob Kill Coins in Slayer Tracker. - hannibal2 ### Technical Details diff --git a/build.gradle.kts b/build.gradle.kts index 3ebdcb8f8..116cd41a1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.1.Beta.2.1" +version = "0.21.1.Beta.3" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 6abecaddc..9fd4d38c7 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -331,7 +331,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.1.Beta.2.1", + version = "0.21.1.Beta.3", ) class SkyHanniMod { @Mod.EventHandler |