Posting here because it is a bug in the modpack:
I've successfully built MFR 2.7.9 with some debugging statements (GDI, skyboy, start linking to posted builds of PowerCrystalsCore instead of just -master...)
The oreNetherIridium never gets added to the MFR laser registry. I've 100% confirmed this through logging when each and every ore gets logged, and Iridium never makes it.
Unlike my previous assumption, it isn't that the "dust name" dustIridium doesn't return a NULL ore, it's that the OreDictionary.getOres("dustIridium") returns a zero-length array of ores, which short-circuits the whole registry logic at that point. (see
https://github.com/skyboy/MineFacto...reloaded/modhelpers/vanilla/Vanilla.java#L504 )
-----
I have, however, a solution for Jaded. It's a two part solution, both parts need to be done for it to work correctly.
1) Install a new MFR 2.7.9 with the check changed to OreDictionary.getOres( netherName ). I've made a build, it's on my dropbox here:
https://dl.dropboxusercontent.com/u/64505857/MineFactoryReloaded-2.7.9-FnDragonBuild.jar (Don't hurt my bandwidth, rehost if possible)
This will add all of the ores that are available to the client that start with oreNether* - The problem is that there are ores in the pack like oreNikolite and oreTennantite, which would also be added (ones that aren't used). To fix this, do the following:
2) Modify the pack's config/powercrystals/netherores/common.cfg so that in the worldgen section you explicitly disable ores that aren't used. From my understanding you need to do this for the following ores:
- oreNikolite
- oreMythril
- oreOsmium
- oreTitanium (unless you add this to the smelting/pulverizing lists in the future, it's not workable at the moment)
- oreTungsten
- oreTennantite
- oreAdamantium
I've already done this as well, and my common.cfg is here:
https://dl.dropboxusercontent.com/u/64505857/common.cfg - You'll notice the only difference is that in the "worldgen" section I change the lines like
B
reNikolite.Disable=false
to
B
reNikolite.Disable=true
-----
I'll make a pull request to Skyboy so this gets in the repository, however the current MFR repository is 1.7.2, and I doubt he wants to make another 1.6.4 official build.