Fix shift click bug

(cherry picked from commit 8f879ab79dd56dce75df85585e6e8f43e9f50450)
This commit is contained in:
Pahimar 2016-05-31 13:46:41 -04:00 committed by bombcar
parent f2e71ce87e
commit b3c2f63e2d
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ public class ContainerTransmutationTablet extends ContainerEE implements IElemen
}
else if (stackInSlot.stackSize < slotStackSizeLimit) {
itemStack1.stackSize -= slotStackSizeLimit - stackInSlot.stackSize;
itemStack1.stackSize = slotStackSizeLimit - stackInSlot.stackSize;
stackInSlot.stackSize = slotStackSizeLimit;
numTransmuted = itemStack1.stackSize;
itemStack1.stackSize = 0;