Hello.
The title says it all: OreDictionary names of (essence and ingot) blocks in mod are incorrect.
It looks like ones are swapped. For example, block of Supremium has OreDictionary name blockProsperity
.
I guess you're confused storage
and ingot_storage
here:
|
registry.register(blockStorage, "storage", new ItemBlockStorage(blockStorage), |
|
Ore.of(0, "blockBaseEssence"), Ore.of(1, "blockInferium"), Ore.of(2, "blockPrudentium"), Ore.of(3, "blockIntermedium"), |
|
Ore.of(4, "blockSuperium"), Ore.of(5, "blockSuperium"), Ore.of(6, "blockSoulium")); |
|
registry.register(blockIngotStorage, "ingot_storage", new ItemBlockIngotStorage(blockIngotStorage), |
|
Ore.of(0, "blockInferiumEssence"), Ore.of(1, "blockPrudentiumEssence"), Ore.of(2, "blockIntermediumEssence"), |
|
Ore.of(3, "blockSuperiumEssence"), Ore.of(4, "blockSupremiumEssence"), Ore.of(5, "blockProsperity")); |
// MC 1.12, mod version 1.6.5