Skip to content

Commit 4cb6901

Browse files
remove: Kuudra & Dungeon Chest Profit initial capacity
1 parent 6c6f97c commit 4cb6901

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/kotlin/gg/skytils/skytilsmod/features/impl/crimson/KuudraChestProfit.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ object KuudraChestProfit {
149149

150150
var keyNeeded: KuudraKey? = null
151151
var value = 0.0
152-
val items = ArrayList<KuudraChestLootItem>(3)
152+
val items = ArrayList<KuudraChestLootItem>()
153153

154154
fun reset() {
155155
keyNeeded = null

src/main/kotlin/gg/skytils/skytilsmod/features/impl/dungeons/DungeonChestProfit.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ object DungeonChestProfit {
266266

267267
var price = 0.0
268268
var value = 0.0
269-
var items = ArrayList<DungeonChestLootItem>(3)
269+
var items = ArrayList<DungeonChestLootItem>()
270270
val profit
271271
get() = value - price
272272

0 commit comments

Comments
 (0)