From dc3484d69a5f983a65a82cb9b07b61dd286ca733 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Tue, 27 Aug 2024 23:44:00 +0700 Subject: [PATCH] oops --- .../kotlin/ru/dbotthepony/mc/otm/container/IMatteryContainer.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/container/IMatteryContainer.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/container/IMatteryContainer.kt index 7010e7038..16d8b0ff2 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/container/IMatteryContainer.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/container/IMatteryContainer.kt @@ -225,7 +225,7 @@ interface IMatteryContainer : IContainer, RecipeInput, Iterable { val list = ArrayList(size()) for (i in 0 until size()) { - list[i] = this[i] + list.add(this[i]) } return list