diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-01 11:33:18 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-01 11:33:18 +0200 |
commit | f963b30b327421c8a178f34a39ff661d4b1ee902 (patch) | |
tree | ffa2dc5d91b824077343accff428c630ba079df5 | |
parent | 4693214cc65b2565976e1233b2f58152126d2e52 (diff) | |
download | skyhanni-f963b30b327421c8a178f34a39ff661d4b1ee902.tar.gz skyhanni-f963b30b327421c8a178f34a39ff661d4b1ee902.tar.bz2 skyhanni-f963b30b327421c8a178f34a39ff661d4b1ee902.zip |
0.20 Beta 27
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | FEATURES.md | 1 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d89824f09..1f65971cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -95,6 +95,7 @@ + Pelts per hour + Press the hotkey to accept the next Trevor the Trapper quest. - CalMWolfs + Added a countdown for Arachne spawn. - Cad + + Supports quick spawns. + Added **Sack Change** chat message hider. - hannibal2 + Enable this option instead of Hypixel's own setting to hide the chat message while enabling mods to utilize sack data for future features. @@ -307,6 +308,10 @@ + Fixed green bandana not getting detected for visitor reward warning. - hannibal2 + Fixed zealots and zealot bruisers not getting detected when being runic. - hannibal2 + Fixed mixins not getting detected correctly from effects inventory for Non God Pot Effect display. - hannibal2 ++ Fixed an error when detecting Jacob Contest times. - hannibal2 ++ Fixed Mushroom Goal breaking the Bingo Card detection. - hannibal2 ++ Fixed Diana's Griffin Pet Warning not working during the Jerry Mayor. - hannibal2 ++ Fixed /ff not detecting changes in the /pets inventory. - CalMWolfs ### Removed Features diff --git a/FEATURES.md b/FEATURES.md index 69720e735..a3d7b8fd0 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -299,6 +299,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game. + **Arachne Minis Hider** - Hides the nametag above arachne minis. + **Arachne Boss Highlighter** - Highlight the arachne boss in red and mini bosses and orange. + Added a countdown for Arachne spawn. - Cad + + Supports quick spawns. + Option to hide the vanilla particles around enderman ## Garden Features diff --git a/build.gradle.kts b/build.gradle.kts index 137053645..7bff277d6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.20.Beta.26" +version = "0.20.Beta.27" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 979b0fe3e..9b589c3bc 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -297,7 +297,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.20.Beta.26", + version = "0.20.Beta.27", ) class SkyHanniMod { @Mod.EventHandler |