コード貼り付けテスト。 ハイライトされるはず。

public class BlockTNT extends Block
{
 
    public BlockTNT(int i, int j)
    {
        super(i, j, Material.tnt);
    }
 
    public int getBlockTextureFromSide(int i)
    {
        if(i == 0)
        {
            return blockIndexInTexture + 2;
        }
        if(i == 1)
        {
            return blockIndexInTexture + 1;
        } else
        {
            return blockIndexInTexture;
        }
    }