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