This commit is contained in:
DBotThePony 2024-08-27 23:44:00 +07:00
parent 15618622ab
commit dc3484d69a
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -225,7 +225,7 @@ interface IMatteryContainer : IContainer, RecipeInput, Iterable<ItemStack> {
val list = ArrayList<ItemStack>(size())
for (i in 0 until size()) {
list[i] = this[i]
list.add(this[i])
}
return list