Looking for help - Crafttweaker & Immersive Engineering

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
I'm trying to define my own mineral veins for the IE excavator, as per the below:

https://crafttweaker.readthedocs.io...ing/CraftTweaker_Support/Excavator/Excavator/

As a test, I've done:

mods.immersiveengineering.Excavator.addMineral("Iron", 50, 0.005, ["minecraft:iron_ore"], [1], [0]);

But this Mineral Vein "Iron" doesn't appear in the IE book, nor can I find it using core sample drills (I've removed all the default Veins).

There are no errors that I can see in log, so I'm a bit stuck.

Does anyone have experience with modifying the Excavator using CraftTweaker?
 

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
I've managed to resolve the issue. The commands do not accept actual item IDs, just OreDict entries, so the above example is:

mods.immersiveengineering.Excavator.addMineral("Iron", 50, 0.005, ["oreIron"], [1], [0]);