Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Fixes meta on shift click, stll has the dupe exploit
Browse files Browse the repository at this point in the history
  • Loading branch information
pahimar committed May 23, 2016
1 parent 2bed1e8 commit 4fac58d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,7 @@ protected boolean mergeTransmutedItemStack(EntityPlayer entityPlayer, Slot trans
stackInSlot = slot.getStack();

if (stackInSlot == null) {

stackInSlot = new ItemStack(itemStack1.getItem());
stackInSlot = itemStack1.copy();
stackInSlot.stackSize = itemStack1.stackSize;
slot.putStack(stackInSlot);
numTransmuted = itemStack1.stackSize;
Expand Down

0 comments on commit 4fac58d

Please sign in to comment.