Hbm-s-Nuclear-Tech-GIT/com/hbm/inventory/SlotMachineOutput.java

20 lines
484 B
Java

package com.hbm.inventory;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class SlotMachineOutput extends Slot {
public SlotMachineOutput(EntityPlayer player, IInventory inventory, int i, int j, int k) {
super(inventory, i, j, k);
}
@Override
public boolean isItemValid(ItemStack p_75214_1_)
{
return false;
}
}