blob: d8e5ef605f04a28cff0deec78f44a3bc2ca0e300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package gregtech.common.items.armor;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class SlotFluid extends Slot{
public SlotFluid(IInventory inventory, int slot_index, int x, int y) {
super(inventory, slot_index, x, y);
}
@Override
public boolean canTakeStack(EntityPlayer p_82869_1_)
{
return false;
}
@Override
public boolean isItemValid(ItemStack p_75214_1_)
{
return false;
}
}
|