Crafting Terminal Sync Fix.

This commit is contained in:
AlgorithmX2 2014-02-10 23:49:40 -06:00
parent 21c254f09f
commit 67cfc0a593
2 changed files with 1 additions and 3 deletions

View file

@ -452,6 +452,7 @@ public abstract class AEBaseContainer extends Container
case CRAFT_ITEM:
case CRAFT_STACK:
((SlotCraftingTerm) s).doClick( action, player );
updateHeld( player );
default:
}
}

View file

@ -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();
}
}