diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 20:10:00 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 20:10:00 +0200 |
commit | 0772a592c875ad9e9fde42e2f3106935b0ffb190 (patch) | |
tree | 4a8870d7151b5138a57c8910c4312f72d0559ac9 /src/main/java | |
parent | 8106e9ceb246f4cbc8215705b88efe3be3465ab3 (diff) | |
download | skyhanni-0772a592c875ad9e9fde42e2f3106935b0ffb190.tar.gz skyhanni-0772a592c875ad9e9fde42e2f3106935b0ffb190.tar.bz2 skyhanni-0772a592c875ad9e9fde42e2f3106935b0ffb190.zip |
fixed copper price once again
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt index 729c1870b..a1740c4e5 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt @@ -441,7 +441,7 @@ class GardenVisitorFeatures { val multiplier = NEUItems.getMultiplier(internalName) val rawName = multiplier.first.getItemNameOrNull()?.removeColor() ?: continue - val cropType = getByNameOrNull(rawName) ?: return + val cropType = getByNameOrNull(rawName) ?: continue val cropAmount = multiplier.second.toLong() * amount val formattedAmount = LorenzUtils.formatInteger(cropAmount) |