diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-16 18:17:51 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-16 18:17:51 +0200 |
commit | f72cfa992591ec7fa3c8e5e72bbffb030c63c45e (patch) | |
tree | cb69bf7832ba0a4f4437968ba96ec0d664c71625 | |
parent | 3209a074d9954299cfe4918fad9ed541aec1b44d (diff) | |
download | skyhanni-f72cfa992591ec7fa3c8e5e72bbffb030c63c45e.tar.gz skyhanni-f72cfa992591ec7fa3c8e5e72bbffb030c63c45e.tar.bz2 skyhanni-f72cfa992591ec7fa3c8e5e72bbffb030c63c45e.zip |
0.19 Beta 10
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 7 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 53ddfc71e..87fc1b527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -110,9 +110,11 @@ + Fixed **Dungeon Master Stars** calculation not working correctly sometimes – hannibal2 & Fix3dll + Fixed Discord Rich Presence detecting absorption hearts not correctly – NetheriteMiner + Fixed Reputation Helper **Kuudra Completions** not getting detected and adding T4 and T5 support - Cinshay - = Fixed Item Ability cooldown not working for Astraea - hannibal2 - = Fixed a typo in the config - hannibal2 - = Added a workaround for a crash when refusing a visitor - hannibal2 + + Fixed Item Ability cooldown not working for Astraea - hannibal2 + + Fixed a typo in the config - hannibal2 + + Added a workaround for a crash when refusing a visitor - hannibal2 ++ Added support for new counter drops to dicer rng counter - ReyMaratov ++ Fixed composter inventory numbers after Hypixel changes - hannibal2 ## Version 0.18 (2023-06-19) diff --git a/build.gradle.kts b/build.gradle.kts index 2cb27ce4f..845b4ab8b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.19.Beta.9" +version = "0.19.Beta.10" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index adb369b02..962d0474e 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -113,7 +113,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.19.Beta.9", + version = "0.19.Beta.10", ) class SkyHanniMod { @Mod.EventHandler |