aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt4
1 files changed, 2 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 fcc171c24..a59aa22ee 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt
@@ -133,8 +133,8 @@ class CropMoneyDisplay {
val moneyPerHours = mutableMapOf<String, Double>()
for ((internalName, amount) in multipliers) {
val price = NEUItems.getPrice(internalName)
- val cropName = cropNames[internalName]!!
- val speed = cropName.getSpeed()
+ val crop = cropNames[internalName]!!
+ val speed = crop.getSpeed()
// No speed data for item in hand
if (speed == -1) continue