aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt5
1 files changed, 3 insertions, 2 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 23e9b8a5e..3df7a8bbf 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingFortuneDisplay.kt
@@ -211,7 +211,7 @@ 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" +
+ "§cCan not read Farming Fortune from tab list! Open /widget and enable the Stats Widget " +
"and showing the Farming Fortune stat.",
command = "widget"
)
@@ -220,10 +220,11 @@ object FarmingFortuneDisplay {
if (firstBrokenCropTime.passedSince() > 10.seconds && !foundTabCropFortune && !firstBrokenCropTime.isFarPast()) {
if (lastCropFortuneMissingError.passedSince() < 1.minutes) return
ChatUtils.clickableChat(
- "§cCan not read Crop Fortune from tab list! Open /widget and enable the Stats Widget" +
+ "§cCan not read Crop Fortune from tab list! Open /widget and enable the Stats Widget " +
"and showing latest Crop Fortune.",
command = "widget"
)
+ lastCropFortuneMissingError = SimpleTimeMark.now()
}
}