From c9cec567945e46befc63168c303ab7feaab6e8c7 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Tue, 3 Jun 2025 15:50:10 -0700 Subject: [PATCH] Fix Barrel Mixing recipes with a result size greater than 1 --- changelog.md | 3 +++ .../exdeorum/blockentity/BarrelBlockEntity.java | 7 +------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/changelog.md b/changelog.md index 348eaf69..13fd21b1 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,6 @@ +## Ex Deorum 1.46 +- Fix Barrel Mixing recipes with a result size greater than 1 only giving one output + ## Ex Deorum 1.45 - Allow changing drops for Random Armor Trim and Pottery Sherd, also add Tide to possible trims (#138) - Add compatibility with Modern Industrialization, Forestry, Nature Arise () diff --git a/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java b/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java index 26c455a1..66ce1a19 100644 --- a/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java +++ b/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java @@ -653,12 +653,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