Excavator Crafttweaker integration not working?
vincania opened this issue ยท 1 comments
I tried to implement new mineral veins with crafttweaker (like shown below), I dont get en error
in the crafttweakerlog so I suppose it should be working like this. But nothing is showing up in the manual. Is this intended or did I wrote something wrong?
Thank you for the answer!
like I did it:
import mods.immersiveengineering.Excavator;
import mods.immersiveengineering.MineralMix;
mods.immersiveengineering.Excavator.removeMineral("Pyrite");
mods.immersiveengineering.Excavator.removeMineral("Lapis");
mods.immersiveengineering.Excavator.removeMineral("Quarzite");
mods.immersiveengineering.Excavator.addMineral("Redstonium", 20, 0.005, ["minecraft:redstone_ore", "minecraft:lapis_ore", "minecraft:diamond_ore"], [0.8, 0.18, 0.02]);
mods.immersiveengineering.Excavator.addMineral("Quarzite", 10, 0.005, ["minecraft:quartz_ore", "thaumcraft:ore_quartz", "thaumcraft:ore_amber"], [0.3, 0.6, 0.1]);
mods.immersiveengineering.Excavator.getMineral("Bauxite").addOre("thaumcraft:ore_cinnabar", 0.15);
mods.immersiveengineering.Excavator.getMineral("Bauxite").addOre("thaumcraft:ore_quartz", 0.15);
mods.immersiveengineering.Excavator.getMineral("Uranium").addOre("thaumcraft:ore_cinnabar", 0.2);