diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-25 00:23:37 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-25 00:23:37 +0100 |
commit | e3243a24ba8f390e90ecc55e6a4b54d00d5fb0e2 (patch) | |
tree | 403dbc8fa07fa3f5a1a55177bb055ae81ba6170d | |
parent | 85f002a5d7a0af35e450b52e17addd50e6889c52 (diff) | |
download | skyhanni-e3243a24ba8f390e90ecc55e6a4b54d00d5fb0e2.tar.gz skyhanni-e3243a24ba8f390e90ecc55e6a4b54d00d5fb0e2.tar.bz2 skyhanni-e3243a24ba8f390e90ecc55e6a4b54d00d5fb0e2.zip |
fixed typo
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt | 4 |
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 |