fixes #40
This commit is contained in:
parent
45783b55f1
commit
d30c251b8f
2 changed files with 23 additions and 1 deletions
21
src/main/java/techreborn/client/SlotFluid.java
Normal file
21
src/main/java/techreborn/client/SlotFluid.java
Normal file
|
@ -0,0 +1,21 @@
|
|||
package techreborn.client;
|
||||
|
||||
|
||||
import net.minecraft.inventory.IInventory;
|
||||
import net.minecraft.inventory.Slot;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.fluids.FluidContainerRegistry;
|
||||
import net.minecraftforge.fluids.IFluidContainerItem;
|
||||
|
||||
public class SlotFluid extends Slot {
|
||||
public SlotFluid(IInventory p_i1824_1_, int p_i1824_2_, int p_i1824_3_, int p_i1824_4_) {
|
||||
super(p_i1824_1_, p_i1824_2_, p_i1824_3_, p_i1824_4_);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isItemValid(ItemStack stack) {
|
||||
|
||||
return FluidContainerRegistry.isContainer(stack) || (stack != null && stack.getItem() instanceof IFluidContainerItem);
|
||||
|
||||
}
|
||||
}
|
|
@ -3,6 +3,7 @@ package techreborn.client.container;
|
|||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.inventory.Slot;
|
||||
import techreborn.client.SlotFake;
|
||||
import techreborn.client.SlotFluid;
|
||||
import techreborn.client.SlotOutput;
|
||||
import techreborn.tiles.TileQuantumTank;
|
||||
|
||||
|
@ -17,7 +18,7 @@ public class ContainerQuantumTank extends TechRebornContainer {
|
|||
this.tileQuantumTank = tileQuantumTank;
|
||||
this.player = player;
|
||||
|
||||
this.addSlotToContainer(new Slot(tileQuantumTank.inventory, 0, 80, 17));
|
||||
this.addSlotToContainer(new SlotFluid(tileQuantumTank.inventory, 0, 80, 17));
|
||||
this.addSlotToContainer(new SlotOutput(tileQuantumTank.inventory, 1,
|
||||
80, 53));
|
||||
this.addSlotToContainer(new SlotFake(tileQuantumTank.inventory, 2, 59,
|
||||
|
|
Loading…
Add table
Reference in a new issue