ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/inventory/slot/SlotImmovable.java

34 lines
740 B
Java
Raw Normal View History

2020-09-09 16:49:01 +02:00
package de.ellpeck.actuallyadditions.common.inventory.slot;
2015-06-21 02:28:49 +02:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
2019-05-02 09:10:29 +02:00
public class SlotImmovable extends Slot {
2015-06-21 02:28:49 +02:00
2019-05-02 09:10:29 +02:00
public SlotImmovable(IInventory inventory, int id, int x, int y) {
2015-06-21 02:28:49 +02:00
super(inventory, id, x, y);
}
2015-10-03 10:19:40 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean isItemValid(ItemStack stack) {
2015-10-03 10:19:40 +02:00
return false;
}
@Override
2019-05-02 09:10:29 +02:00
public void putStack(ItemStack stack) {
}
@Override
2019-05-02 09:10:29 +02:00
public ItemStack decrStackSize(int i) {
2017-11-02 22:49:53 +01:00
return ItemStack.EMPTY;
}
2015-06-21 02:28:49 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean canTakeStack(EntityPlayer player) {
2015-06-21 02:28:49 +02:00
return false;
}
}