From 0ac6b2fa59b30f6435dee80dc600e1fd5b8ff248 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Tue, 3 Jun 2025 13:48:18 -0700 Subject: [PATCH] Fix Barrel Mixing recipes with a result size greater than 1 --- changelog.md | 3 +++ .../exdeorum/blockentity/BarrelBlockEntity.java | 8 +------- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/changelog.md b/changelog.md index e087fad6..84a7fad9 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,6 @@ +## Ex Deorum 3.7 +- Fix Barrel Mixing recipes with a result size greater than 1 only giving one output + ## Ex Deorum 3.6 - Implement custom Compressed Sieve types. Works the same as with sieves, just replace `sieve_materials` with `compressed_sieve_materials` - Fix silkworms not applying to certain modded leaves like TFC diff --git a/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java b/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java index 142ef310..1f22f892 100644 --- a/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java +++ b/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java @@ -66,7 +66,6 @@ import thedarkcolour.exdeorum.recipe.barrel.FluidTransformationRecipe; import thedarkcolour.exdeorum.registry.EBlockEntities; import thedarkcolour.exdeorum.registry.ESounds; -import java.util.Objects; import java.util.Optional; public class BarrelBlockEntity extends ETankBlockEntity { @@ -640,12 +639,7 @@ public class BarrelBlockEntity extends ETankBlockEntity { } public ItemStack extract(boolean simulate) { - return extractItem(0, 1, simulate); - } - - @Override - public ItemStack extractItem(int slot, int amount, boolean simulate) { - return super.extractItem(slot, amount, simulate); + return extractItem(0, 64, simulate); } @Override