From b17a44e2d87387a279dbda43a60b29d1c07ba42d 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(-) 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