diff options
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | FEATURES.md | 3 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cc06f797..895e0143d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,9 @@ + Added keybind to manually reset the barn/worm fishing timer. - CarsCupcake + Added timer till shared inquisitors will despawn. - hannibal2 + Account upgrade complete reminder. - appable0 ++ Chat message how many places you dropped in the farming weight lb when joining garden. ++ Added command /shfarmingprofile [player name] ++ Opens the elitebot.dev website in your web browser to show your Farming Weight profile. ### Changes @@ -45,6 +48,11 @@ + Chest Value now works with Backpack and Ender Chest. - HiZe + Only works if NEU storage is not active. + Removed distance checks when detecting sea creatures for fishing timer. - hannibal2 ++ Added Enchantments Cap to EstimatedItemValue. - hannibal2 + + Only show the top # most expensive enchantments on an item. ++ Count sea emperor and rider of the deep twice against sea creature cap. ++ Clicking on the chat message from farming weight will run the /shfarmingprofile command. ++ Changed Bestiary Display number format - HiZe ### Fixes @@ -71,6 +79,9 @@ + Fixed Sea Creature Timer not working on barn. - hannibal2 + Arachne boss highlighter no longer requires damage indicator to be enabled. - hannibal2 + /shtrackcollection Cactus now detects cactus green. hannibal2 ++ Fixed arachne minis falsely show in damage indicator. ++ Fixed rare cases where special laptop keys trigger behavior unintended. - hannibal2 ++ Fixed rendering problems with stack background and custom text lore. - nea ### Removed Features diff --git a/FEATURES.md b/FEATURES.md index f367bb5ab..6516dc75c 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -307,6 +307,7 @@ + provided by the elite skyblock farmers. + next leaderboard position eta. + Instantly showing the next player in the lb when passing someone on the leaderboard. - Kaeso + + Chat message how many places you dropped in the farming weight lb when joining garden. + **Dicer Counter** - Count RNG drops for Melon Dicer and Pumpkin Dicer. + **Warn When Close** - Warn with title and sound when the next crop milestone upgrade happens in 5 seconds. Useful for switching to a different pet for leveling. @@ -472,6 +473,8 @@ particular item based on the current crop speed. + `/pt <player>` as alias for `/party transfer <player>` + SkyBlock Command `/tp` to check the play time still works ++ **/shfarmingprofile [player name]** + + Opens the elitebot.dev website in your web browser to show your Farming Weight profile. ## Misc diff --git a/build.gradle.kts b/build.gradle.kts index bf09a1abe..ab76d7c16 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.20.Beta.8" +version = "0.20.Beta.9" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index d66d4f69b..738c3d513 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -126,7 +126,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.20.Beta.8", + version = "0.20.Beta.9", ) class SkyHanniMod { @Mod.EventHandler |