From e3243a24ba8f390e90ecc55e6a4b54d00d5fb0e2 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 25 Mar 2023 00:23:37 +0100 Subject: fixed typo --- .../java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java') 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() 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 -- cgit