aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/garden
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/garden')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt
index c682650bd..344e36bd3 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt
@@ -57,15 +57,22 @@ class CropMoneyDisplay {
private fun drawDisplay(): MutableList<List<Any>> {
val newDisplay = mutableListOf<List<Any>>()
+
+ val title = if (config.moneyPerHourCompact) {
+ Collections.singletonList("§7Money per hour:")
+ } else {
+ Collections.singletonList("§7Money per hour when selling:")
+ }
+
if (!ready) {
- newDisplay.add(Collections.singletonList("§7Money per hour when selling:"))
+ newDisplay.add(title)
newDisplay.add(Collections.singletonList("§eLoading..."))
return newDisplay
}
if (!hasCropInHand && !config.moneyPerHourAlwaysOn) return newDisplay
- newDisplay.add(Collections.singletonList("§7Money per hour when selling:"))
+ newDisplay.add(title)
val moneyPerHourData = calculateMoneyPerHour()
if (moneyPerHourData.isEmpty()) {