* Component that represents a Ender Chest in the world.
*/
public class EnderChest extends AbstractChest {
@Override
public boolean open(Player player) {
player.get(WindowHolder.class).openWindow(new EnderChestWindow(player, this, player.get(PlayerInventory.class).getEnderChestInventory()));
return super.open(player);
}