diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-14 23:58:17 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-14 23:58:17 +0100 |
commit | 05394c65b6658670c17224f2aa9352a08160255a (patch) | |
tree | 69e131622db184a475e60db3011d3b8c51703f07 /src/main/java/at/hannibal2 | |
parent | ae90ce851f7f55265863a11d52b41c30aa15d89f (diff) | |
download | skyhanni-05394c65b6658670c17224f2aa9352a08160255a.tar.gz skyhanni-05394c65b6658670c17224f2aa9352a08160255a.tar.bz2 skyhanni-05394c65b6658670c17224f2aa9352a08160255a.zip |
code clenup
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt index 1b170bc7f..8547f4d51 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt @@ -90,9 +90,9 @@ class DicerRngDropCounter { } private fun addDrop(item: String, rarity: DropRarity) { - val melon = drops[item]!! - val old = melon[rarity] ?: 0 - melon[rarity] = old + 1 + val map = drops[item]!! + val old = map[rarity] ?: 0 + map[rarity] = old + 1 } @SubscribeEvent |