Fix Barrel Mixing recipes with a result size greater than 1
This commit is contained in:
parent
41547e72bb
commit
c9cec56794
|
|
@ -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
|
## Ex Deorum 1.45
|
||||||
- Allow changing drops for Random Armor Trim and Pottery Sherd, also add Tide to possible trims (#138)
|
- 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 ()
|
- Add compatibility with Modern Industrialization, Forestry, Nature Arise ()
|
||||||
|
|
|
||||||
|
|
@ -653,12 +653,7 @@ public class BarrelBlockEntity extends ETankBlockEntity {
|
||||||
}
|
}
|
||||||
|
|
||||||
public ItemStack extract(boolean simulate) {
|
public ItemStack extract(boolean simulate) {
|
||||||
return extractItem(0, 1, simulate);
|
return extractItem(0, 64, simulate);
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ItemStack extractItem(int slot, int amount, boolean simulate) {
|
|
||||||
return super.extractItem(slot, amount, simulate);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user