package net.minecraft.src;

import java.util.Random;

public class BlockOrnament extends Block
{

    public BlockOrnament(int i, int j)
    {
        super(i, j, Material.rock);
    }

    public int getBlockTextureFromSide(int i)
    {
        if(i == 0)
        {
            return blockIndexInTexture + 1;
        }
        if(i == 1)
        {
            return blockIndexInTexture + 1;
        } else
        {
            return blockIndexInTexture;
        }
    }
}

Add a code snippet to your website: www.paste.org