fix gate expansion recipe ignoring the input's stack size

This commit is contained in:
Hea3veN 2015-05-27 20:39:14 -03:00
parent 499bd99735
commit b4f237c795
2 changed files with 2 additions and 0 deletions

View file

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

View file

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