diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 02:40:18 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-28 02:40:18 +0200 |
commit | f9c918114e18f4345ae9054df35419d95888ca6e (patch) | |
tree | e9e25dad4328e701721672e8e643f17535c8c455 | |
parent | ee5f2d9bd2dac97eb5743959fd0ac9f7e71590b7 (diff) | |
download | skyhanni-f9c918114e18f4345ae9054df35419d95888ca6e.tar.gz skyhanni-f9c918114e18f4345ae9054df35419d95888ca6e.tar.bz2 skyhanni-f9c918114e18f4345ae9054df35419d95888ca6e.zip |
0.21 Beta 13
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 259e8e598..a3a69d04b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -109,6 +109,8 @@ + Added support for tab complete item IDs in the Hypixel command /viewrecipe. - hannibal2 + Only items with recipes are tab completed. + Added option to set the size of highlighted motes orbs in rift and make them smaller by default. - cimbraien ++ Disabled clicks on SkyHanni GUIs while inside NEU's or Skytils profile viewer. - hannibal2 ++ Removed armor stand checks for Trevor Solver. This fixes or nerfs the feature to not highlight mobs behind blocks sometimes. - hannibal2 ### Bug Fixes @@ -152,6 +154,12 @@ anymore. - Thunderblade73 + Fixed potential crash with future neu version. - CalMWolfs + Added missing beep sound to rejoin SkyBlock after kick warning. - hannibal2 ++ Fixed Fire Veil particle hider not working. - cimbraien ++ Fixed a bug with the Trophy Sack Display reading number. - HiZe ++ Fixed Ghost Counter item stack detection. - HiZe ++ Fixed Farming Weight Display shows 0 weight wrongly sometimes. - Kaeso ++ Fixed damage indicator errors during Enderman Slayer. - hannibal2 ++ Fixed weird error messages in the Damage Indicator. - hannibal2 #### Config @@ -168,6 +176,7 @@ + Add Repo TODOs to regex patterns. - walker + Moved many patterns from function scope to members. - hannibal2 + Avoid hardcoded dispatcher. - walker ++ Created and used Entity.canBeSeen and LorenzVec.canBeSeen. - hannibal2 ## Version 0.20 diff --git a/build.gradle.kts b/build.gradle.kts index bca19c4e1..992a12cd0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.21.Beta.12" +version = "0.21.Beta.13" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index bdc2e7a7c..e98aea83f 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -317,7 +317,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.21.Beta.12", + version = "0.21.Beta.13", ) class SkyHanniMod { @Mod.EventHandler |