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