This commit is contained in:
Virtuoel 2015-06-29 03:26:12 +03:00
parent 783fa978c2
commit e9195afcde
1 changed files with 10 additions and 0 deletions

View File

@ -461,6 +461,16 @@ public class ContainerTransmutationTablet extends ContainerEE implements IElemen
}
}
@Override
public ItemStack slotClick(int slot, int button, int flag, EntityPlayer player)
{
if(button==0 && flag==6)
{
return null;
}
return super.slotClick(slot, button, flag, player);
}
private class SlotAlchemicalTome extends Slot
{
private ContainerTransmutationTablet containerTransmutationTablet;