Added names for crushed ores
This commit is contained in:
parent
6c4b87e07a
commit
57780d23ed
1 changed files with 4 additions and 6 deletions
|
@ -12,11 +12,9 @@ import techreborn.client.TechRebornCreativeTabMisc;
|
|||
|
||||
public class ItemCrushedOre extends Item {
|
||||
public static final String[] types = new String[]
|
||||
{ "aluminum", "antimony", "batteryAlloy", "redAlloy", "blueAlloy", "brass",
|
||||
"cadmium", "chrome", "cupronickel", "electrum", "indium",
|
||||
"invar", "iridium", "kanthal", "lodestone", "magnalium", "nichrome", "nickel",
|
||||
"osmium", "platinum", "steel", "tellurium", "titanium",
|
||||
"tungsten", "hotTungstensteel", "tungstensteel", "zinc" };
|
||||
{ "Ardite", "Bauxite", "Cadmium", "Cinnabar", "Cobalt", "DarkIron",
|
||||
"Indium", "Iridium", "Nickel", "Osmium", "Platinum",
|
||||
"Pyrite", "Sphalerite", "Tetrahedrite", "Tungsten" };
|
||||
|
||||
private IIcon[] textures;
|
||||
|
||||
|
@ -35,7 +33,7 @@ public class ItemCrushedOre extends Item {
|
|||
|
||||
for (int i = 0; i < types.length; ++i)
|
||||
{
|
||||
textures[i] = iconRegister.registerIcon("techreborn:" + "crushedOre/"
|
||||
textures[i] = iconRegister.registerIcon("techreborn:" + "crushedOre/crushed"
|
||||
+ types[i] + "Ore");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue