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