Fix Barrel Mixing recipes with a result size greater than 1
This commit is contained in:
parent
8c24f539da
commit
0ac6b2fa59
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user