mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
366 B
Java
18 lines
366 B
Java
package com.hbm.inventory;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.inventory.Slot;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class SlotTakeOnly extends Slot {
|
|
|
|
public SlotTakeOnly(IInventory inventory, int i, int j, int k) {
|
|
super(inventory, i, j, k);
|
|
}
|
|
|
|
@Override
|
|
public boolean isItemValid(ItemStack stack) {
|
|
return false;
|
|
}
|
|
}
|