Fix Barrel Mixing recipes with a result size greater than 1

This commit is contained in:
thedarkcolour 2025-06-03 15:50:10 -07:00
parent 41547e72bb
commit c9cec56794
No known key found for this signature in database
GPG Key ID: 86B37B3575FD5976
2 changed files with 4 additions and 6 deletions

View File

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

View File

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