From b4f237c79504c3ab5e07b76e1d6299c274a91743 Mon Sep 17 00:00:00 2001 From: Hea3veN Date: Wed, 27 May 2015 20:39:14 -0300 Subject: [PATCH] fix gate expansion recipe ignoring the input's stack size --- buildcraft_resources/changelog/7.0.6 | 1 + common/buildcraft/transport/recipes/GateExpansionRecipe.java | 1 + 2 files changed, 2 insertions(+) diff --git a/buildcraft_resources/changelog/7.0.6 b/buildcraft_resources/changelog/7.0.6 index 06e7b51c..429868b1 100644 --- a/buildcraft_resources/changelog/7.0.6 +++ b/buildcraft_resources/changelog/7.0.6 @@ -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) diff --git a/common/buildcraft/transport/recipes/GateExpansionRecipe.java b/common/buildcraft/transport/recipes/GateExpansionRecipe.java index e699e809..859a199f 100644 --- a/common/buildcraft/transport/recipes/GateExpansionRecipe.java +++ b/common/buildcraft/transport/recipes/GateExpansionRecipe.java @@ -90,6 +90,7 @@ public class GateExpansionRecipe extends IntegrationRecipeBC { @Override public ItemStack craft(ItemStack input, List expansions, boolean preview) { ItemStack output = input.copy(); + output.stackSize = 1; int expansionsAdded = 0; for (ItemStack chipset : expansions) {