diff options
author | Empa <42304516+ItsEmpa@users.noreply.github.com> | 2024-06-02 09:18:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-02 17:18:59 +1000 |
commit | a6cfa44a97a7f82b05501ef76f5b62d62fb03f85 (patch) | |
tree | 9b7f484e9f73f85de6d363298e246d9bab018bab /src/main/java/at/hannibal2/skyhanni | |
parent | f91b00b9c8b0c4b4d73a56f1fd42f8f074a08de8 (diff) | |
download | skyhanni-a6cfa44a97a7f82b05501ef76f5b62d62fb03f85.tar.gz skyhanni-a6cfa44a97a7f82b05501ef76f5b62d62fb03f85.tar.bz2 skyhanni-a6cfa44a97a7f82b05501ef76f5b62d62fb03f85.zip |
Improvement: Better Farming Fortune error message (#1922)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt index 7c4ccaafd..0d75c9325 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt @@ -218,8 +218,8 @@ object FarmingFortuneDisplay { if (gardenJoinTime.passedSince() > 5.seconds && !foundTabUniversalFortune && !gardenJoinTime.isFarPast()) { if (lastUniversalFortuneMissingError.passedSince() < 1.minutes) return ChatUtils.clickableChat( - "§cCan not read Farming Fortune from tab list! Open /widget and enable the Stats Widget " + - "and showing the Farming Fortune stat.", + "§cCan not read Farming Fortune from tab list! Open /widget, enable the Stats Widget and " + + "show the Farming Fortune stat, also give the widget enough priority.", onClick = { HypixelCommands.widget() } @@ -229,8 +229,8 @@ object FarmingFortuneDisplay { if (firstBrokenCropTime.passedSince() > 10.seconds && !foundTabCropFortune && !firstBrokenCropTime.isFarPast()) { if (lastCropFortuneMissingError.passedSince() < 1.minutes || !GardenAPI.isCurrentlyFarming()) return ChatUtils.clickableChat( - "§cCan not read Crop Fortune from tab list! Open /widget and enable the Stats Widget " + - "and showing latest Crop Fortune.", + "§cCan not read Crop Fortune from tab list! Open /widget, enable the Stats Widget and " + + "show latest Crop Fortune, also give the widget enough priority.", onClick = { HypixelCommands.widget() } |