/* * This file ("TileEntityGiantChest.java") is part of the Actually Additions Mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://ellpeck.de/actaddlicense/ * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2016 Ellpeck */ package de.ellpeck.actuallyadditions.mod.tile; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumFacing; public class TileEntityGiantChest extends TileEntityInventoryBase{ public TileEntityGiantChest(){ super(9*13, "giantChest"); } @Override public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){ return this.isItemValidForSlot(slot, stack); } @Override public boolean isItemValidForSlot(int i, ItemStack stack){ return true; } @Override public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){ return true; } }