mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
20 lines
470 B
Java
20 lines
470 B
Java
package com.hbm.gui;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.inventory.Slot;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class SlotDiFurnace extends Slot {
|
|
|
|
public SlotDiFurnace(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;
|
|
}
|
|
}
|