aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md14
-rw-r--r--FEATURES.md7
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenCropMilestoneDisplay.kt2
5 files changed, 24 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 799e15740..1bb14e0bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,10 +2,15 @@
## Version 0.21.1 (unreleased)
-
### New Features
+ Organised the config into sub categories. - nea & walker
++ Wrong crop milestone step detection. - hannibal2
+ + When opening the crop milestone menu, a chat message is sent if Hypixel's crops per milestone level data is
+ different from SkyHanni's.
+ + You can use this to share your hypixel data with SkyHanni via the discord.
+ + This will allow us to fix the crop milestone features quicker, as we currently do not have accurate data for this.
+ + If you don't want to share anything, you can disable the chat message in the config with /sh copy milestone data.
### Changes
@@ -36,6 +41,7 @@
+ Fixed Farming Contest Medal Icons in Inventory not showing. - hannibal2
+ Fixed /ff not detecting collection analyst fortune. - hannibal2
+ Fixed Mushroom Cow Perk display not working. - hannibal2
++ Fixed visitor timer error if the visitors aren't unlocked yet. - hannibal2
#### Other Fixes
@@ -46,6 +52,7 @@
+ Fixed Archfiend Dice and High Class Archfiend Dice counting as slayer drops when rolled. - hannibal2
+ Fixed dice roll profit counting as Mob Kill Coins in Slayer Tracker. - hannibal2
+ Fixed Sack Display sometimes not formatting a million correctly. - Hize
++ Fixed Estimated Item Value getting shown in stats breakdown menu. - hannibal2
### Technical Details
@@ -56,6 +63,11 @@
+ Extracted sacks, friends, known features and Jacob contests in to their separate files. - CalMWolfs
+ Add log clearing. - CalMWolfs
+ Add auto-prefix to chat message methods. - walker
++ Added support for extra data in error manager. - hannibal2
++ Added /readcropmilestonefromclipboard. - hannibal2
+ + This command reads the clipboard content, in the format of users sending crop milestone step data.
+ + The new data gets compared to the currently saved data, differences are getting replaced and the result gets put
+ into the clipboard. The clipboard context can be used to update the repo content.
## Version 0.21
diff --git a/FEATURES.md b/FEATURES.md
index 2d2c53201..b354e160d 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -488,6 +488,13 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Highlights Visitors outside the Garden.
+ Block Interacting with Visitors. - nea
+ Blocks you from interacting with / unlocking Visitors to allow for Dedication Cycling.
++ Wrong crop milestone step detection. - hannibal2
+ + When opening the crop milestone menu, a chat message is sent if Hypixel's crops per milestone level data is
+ different from SkyHanni's.
+ + You can use this to share your hypixel data with SkyHanni via the discord.
+ + This will allow us to fix the crop milestone features quicker, as we currently do not have accurate data for this.
+ + If you don't want to share anything, you can disable the chat message in the config with /sh copy milestone data.
+
</details>
<details open><summary>
diff --git a/build.gradle.kts b/build.gradle.kts
index e763b7f41..febac4b97 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -11,7 +11,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.21.1.Beta.4"
+version = "0.21.1.Beta.5"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 4a84c8823..085b6fcd8 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -331,7 +331,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.21.1.Beta.4",
+ version = "0.21.1.Beta.5",
)
class SkyHanniMod {
@Mod.EventHandler
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenCropMilestoneDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenCropMilestoneDisplay.kt
index 0ae9115eb..dae3e129f 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenCropMilestoneDisplay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenCropMilestoneDisplay.kt
@@ -101,6 +101,8 @@ object GardenCropMilestoneDisplay {
val addedCounter = (counter - old).toInt()
FarmingWeightDisplay.addCrop(crop, addedCounter)
update()
+ // Farming Simulator: There is a 25% chance for Mathematical Hoes and the Cultivating Enchantment to count twice.
+ // 0.8 = 1 / 1.25
crop.setCounter(
crop.getCounter() + if (GardenCropSpeed.finneganPerkActive()) {
(addedCounter.toDouble() * 0.8).toInt()