1 2 3 4 5 6 7 8 9 10 11 12 13 14
package jp.plusplus.fbs.container; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.Container; /** * Createdby pluslus_Fon 2015/06/14. */ public class ContainerDummy extends Container { @Override public boolean canInteractWith(EntityPlayer entityPlayer) { return false; } }