blob: 3ac9884cde99415942f9093205f6078e9531b644 [file] [log] [blame] [raw]
package net.glowstone.block.entity;
import net.glowstone.block.GlowBlock;
import net.glowstone.block.GlowBlockState;
import net.glowstone.block.state.GlowChest;
import org.bukkit.event.inventory.InventoryType;
/**
* Tile entity for Chests.
*/
public class TEChest extends TEContainer {
public TEChest(GlowBlock block) {
super(block, InventoryType.CHEST);
setSaveId("Chest");
}
@Override
public GlowBlockState getState() {
return new GlowChest(block);
}
}