Skip to content

Commit

Permalink
Fix: Cactus/Sugar Cane Money Per Hour (#2959)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunaynx authored Nov 20, 2024
1 parent 60afd4f commit 9b2ff00
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,7 @@ object CropMoneyDisplay {
}

if (config.armor) {
val amountPerHour =
it.multiplier * GardenCropSpeed.getRecentBPS() * ArmorDropTracker.getDropsPerHour(it)
val amountPerHour = GardenCropSpeed.getRecentBPS() * ArmorDropTracker.getDropsPerHour(it)
extraArmorCoins = amountPerHour * it.specialDropType.toInternalName().getNpcPrice()
}
}
Expand Down

0 comments on commit 9b2ff00

Please sign in to comment.