fix gate expansion recipe ignoring the input's stack size
This commit is contained in:
parent
499bd99735
commit
b4f237c795
2 changed files with 2 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
Bugs fixed:
|
||||
|
||||
* [#2730] fix integration table using energy when it has an invalid recipe (hea3ven)
|
||||
* fix gate expansion recipe ignoring the input's stack size (hea3ven)
|
||||
* fix planters dropping items in stead of planting (hea3ven)
|
||||
|
|
|
@ -90,6 +90,7 @@ public class GateExpansionRecipe extends IntegrationRecipeBC {
|
|||
@Override
|
||||
public ItemStack craft(ItemStack input, List<ItemStack> expansions, boolean preview) {
|
||||
ItemStack output = input.copy();
|
||||
output.stackSize = 1;
|
||||
int expansionsAdded = 0;
|
||||
|
||||
for (ItemStack chipset : expansions) {
|
||||
|
|
Loading…
Reference in a new issue