diff --git a/container/AEBaseContainer.java b/container/AEBaseContainer.java index aa34990bb..3cbfedf60 100644 --- a/container/AEBaseContainer.java +++ b/container/AEBaseContainer.java @@ -452,6 +452,7 @@ public abstract class AEBaseContainer extends Container case CRAFT_ITEM: case CRAFT_STACK: ((SlotCraftingTerm) s).doClick( action, player ); + updateHeld( player ); default: } } diff --git a/container/slot/SlotCraftingTerm.java b/container/slot/SlotCraftingTerm.java index 75a3333d5..77dc6fe03 100644 --- a/container/slot/SlotCraftingTerm.java +++ b/container/slot/SlotCraftingTerm.java @@ -4,7 +4,6 @@ import java.util.ArrayList; import java.util.List; import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.InventoryCrafting; import net.minecraft.item.ItemStack; @@ -224,8 +223,6 @@ public class SlotCraftingTerm extends AppEngCraftingSlot } } } - - ((EntityPlayerMP) who).updateHeldItem(); } }