Minetweaker 2 1.6.4, HELP with modded recipe!

VenomFrog

New Member
Jul 29, 2019
22
0
0
From wiki:
  • The simplest oreDict edit is adding an item to a pre-existing oreDict name, as such:
    oreDict.plankWood.add(tile.leaves);
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.

  • 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);
So, oreDict.ingotSteel.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>);