Immersive Engineering Excavator changes don't work
NathanHentges opened this issue ยท 6 comments
Modpack version:
2.3.1
Description:
The current Excavator changes in /scripts/ImmersiveEngineering.zs
are formatted incorrectly.
On line 443, it currently reads:
# Excavator changes
mods.immersiveengineering.Excavator.removeMineral("Platinum Ore");
mods.immersiveengineering.Excavator.removeMineral("Iridium Ore");
mods.immersiveengineering.Excavator.removeMineral("Uranium Ore");
mods.immersiveengineering.Excavator.addMineral("Osmium Ore", 35, 0.005, ["ore:oreOsmium"], [1.0], [0, -1]);
But the correct formatting would be:
# Excavator changes
mods.immersiveengineering.Excavator.removeMineral("Platinum");
mods.immersiveengineering.Excavator.removeMineral("Iridium");
mods.immersiveengineering.Excavator.removeMineral("Uranium");
mods.immersiveengineering.Excavator.addMineral("Osmium", 35, 0.005, ["oreOsmium"], [1.0], [0, -1]);
Steps to reproduce:
- Open /scripts/ImmersiveEngineering.zs and make the above changes
- Check the Engineer's Manual mineral deposits, should see the Osmium vein.
Screenshots:
Engineer's Manual showing the Osmium vein after making these changes
Additional context:
Additionally, you can remove platinum ore from the nickel vein by adding the line:
mods.immersiveengineering.Excavator.getMineral("Nickel").removeOre("orePlatinum");
Edit: Changed "Osmium Ore"
to "Osmium"
in the mineral name
Corrected the changes in 2.4.0: https://www.curseforge.com/minecraft/modpacks/divine-journey-2/files/3464189
@tjsd Did you change the osmium line from ore:oreOsmium
to just plain oreOsmium
? That caught me out when I first made a change and I also got no minerals.
For anyone else making this change manually, I'd recommend completely replacing the entire block under # Excavator changes
just to ensure you don't miss any small details like that.
Hjaldar, good call on the Osmium vein name, I overlooked that.
I tried implementing the fixes as outlined here, but they Osmium vein contains 0 minerals still.
I think that black quartz should also be added to the quartzite vein.