diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-30 13:10:17 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-30 13:10:17 +0200 |
commit | 3fdb36ffa6a6765236c01e9470fa09702ad3f510 (patch) | |
tree | 9a79831544c190703f25c8fca23287e7791350dc | |
parent | 151ba304db470dc470c9e5b917aa0a4825547b2b (diff) | |
download | skyhanni-3fdb36ffa6a6765236c01e9470fa09702ad3f510.tar.gz skyhanni-3fdb36ffa6a6765236c01e9470fa09702ad3f510.tar.bz2 skyhanni-3fdb36ffa6a6765236c01e9470fa09702ad3f510.zip |
0.20 Beta 26
-rw-r--r-- | CHANGELOG.md | 15 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 16 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5482e21a9..d89824f09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -182,7 +182,10 @@ + Ignoring non-slayer drops in the slayer profit tracker. - hannibal2 + Added support for slayer drops that go directly into the sack. - hannibal2 + This still does not work for items that land directly in your inventory. (e.g., Netherrack-Looking Sunshade, - Summoning Eye, etc.) + Summoning Eye, etc.) ++ Added toggle for 12hr/24hr in real-time HUD. - Thunderblade73 ++ Removed Flowering Bouquet from and added Cultivating to the default enabled Visitor Reward Warnings list. - hannibal2 ++ Improved performance in the Garden Visitor inventory. - hannibal2 ### Fixes @@ -294,6 +297,16 @@ + Hide item rarity error message in /ff. - hannibal2 + Fixed an issue with the Wheat Profit Display not showing the correct value when combined with seeds. - Thunderblade73 + Tab complte party members now also detects if the party leader leaves. - CalMWolfs ++ Fixed typos in many config settings. - Absterge ++ Fixed NEU Heavy Pearl detection. - hannibal2 ++ Fixed showing Wrong Slayer Warning sometimes at the wrong time. - Cad ++ Fixed farming contest summary time being off sometimes. - hannibal2 ++ Fixed wrong order at Visitor Drop Statistics. - hannibal2 ++ Fixed bits and powder not saving in Visitor Drop Statistics. - hannibal2 ++ Fixed not being able to disable show Dungeon Head Floor Number as stack size. - hannibal2 ++ 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 ### Removed Features diff --git a/build.gradle.kts b/build.gradle.kts index 4579aad38..137053645 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.20.Beta.25.1" +version = "0.20.Beta.26" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index f3ef5b0fd..294a3b8cc 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -298,7 +298,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.20.Beta.25.1", + version = "0.20.Beta.26", ) class SkyHanniMod { @Mod.EventHandler |