Slight adjustment to barrows loot rolls

This commit is contained in:
ceikry
2021-07-18 23:02:49 -05:00
parent 71cbe34946
commit f9e3f4f3b4
@@ -85,7 +85,7 @@ object RewardChest {
} }
} }
val rewards: MutableList<Item> = ArrayList() val rewards: MutableList<Item> = ArrayList()
var maxRolls = 2 + RandomFunction.random(1,6) var maxRolls = 2 + RandomFunction.random(1,4)
for (i in 0 until maxRolls) { for (i in 0 until maxRolls) {
rewards.addAll(DROP_TABLE.roll()) rewards.addAll(DROP_TABLE.roll())
} }