mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
25 lines
564 B
Java
25 lines
564 B
Java
|
package ellpeck.actuallyadditions.inventory.slot;
|
||
|
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.inventory.IInventory;
|
||
|
import net.minecraft.inventory.Slot;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public class SlotImmovable extends Slot{
|
||
|
|
||
|
public SlotImmovable(IInventory inventory, int id, int x, int y){
|
||
|
super(inventory, id, x, y);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean canTakeStack(EntityPlayer player){
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isItemValid(ItemStack stack){
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|