Fix Barrel Mixing recipes with a result size greater than 1

This commit is contained in:
thedarkcolour 2025-06-03 13:48:18 -07:00
parent 8c24f539da
commit 0ac6b2fa59
No known key found for this signature in database
GPG Key ID: 86B37B3575FD5976
2 changed files with 4 additions and 7 deletions

View File

@ -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

View File

@ -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