From a6cfa44a97a7f82b05501ef76f5b62d62fb03f85 Mon Sep 17 00:00:00 2001 From: Empa <42304516+ItsEmpa@users.noreply.github.com> Date: Sun, 2 Jun 2024 09:18:59 +0200 Subject: Improvement: Better Farming Fortune error message (#1922) Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> --- .../hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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() } -- cgit