From wiki:
Now ANY type of Leaves are equivalent to ANY type of Wooden Planks. Handy if your mod forgot to add its custom wood to the ore dictionary.
- The simplest oreDict edit is adding an item to a pre-existing oreDict name, as such:
oreDict.plankWood.add(tile.leaves);
So, oreDict.ingotSteel.add(item.ingotIron);
- It's also possible to define new ore dictionary items simply by using an ore dictionary name that doesn't exist yet:
oreDict.myAnyIngot.add(item.ingotGold);
oreDict.myAnyIngot.add(item.ingotIron);
makes iron the same as steel
Okay, so in theory, if i want to add stone, i can do ID's as well? like:
oreDict.ingotSteel.add(<1>);