Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 12 lines 286 B view raw
1package net.minecraft.server; 2 3public class BlockSandStone extends Block { 4 5 public BlockSandStone(int i) { 6 super(i, 192, Material.STONE); 7 } 8 9 public int a(int i) { 10 return i == 1 ? this.textureId - 16 : (i == 0 ? this.textureId + 16 : this.textureId); 11 } 12}