2013-04-28 02:25:06 -07:00

33 lines
729 B
Java

package mods.tinker.tconstruct.blocks.logic;
import mods.tinker.tconstruct.inventory.PatternChestContainer;
import mods.tinker.tconstruct.library.InventoryLogic;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.world.World;
public class PatternChestLogic extends InventoryLogic
{
public PatternChestLogic()
{
super(30);
}
public boolean canUpdate()
{
return false;
}
@Override
public String getDefaultName ()
{
return "toolstation.patternholder";
}
@Override
public Container getGuiContainer (InventoryPlayer inventoryplayer, World world, int x, int y, int z)
{
return new PatternChestContainer(inventoryplayer, this);
}
}