Merge pull request #932 from SandGrainOne/master

Fix for duplication bug in advanced crafting tables.
This commit is contained in:
Krapht 2013-06-11 14:28:21 -07:00
commit 3dbe71ea36

View file

@ -7,6 +7,7 @@
*/
package buildcraft.core.gui.slots;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
/**
@ -23,4 +24,10 @@ public class SlotPhantom extends SlotBase implements IPhantomSlot {
public boolean canAdjust() {
return true;
}
@Override
public boolean canTakeStack(EntityPlayer par1EntityPlayer)
{
return false;
}
}