Zeno410 / UndergroundBiomesConstructs1.10

Underground Biomes Constructs for Minecraft 10.2
7 stars 28 forks source link

Improper Ore Dictionary tags on UBC Ores #3

Closed mallrat208 closed 7 years ago

mallrat208 commented 7 years ago

UBC Version: UndergroundBiomesConstructs-1.10-0.9-beta.16

All UBC Ores are currently registered under logWood. This includes Iron, Gold, Diamond, Lapis, Redstone and any Ores registered by an outside mod.

I want to say the problem is on Line 327 in OreRegistry.java

                String registrationName = OreDictionary.getOreName(i);

For any block that has one ore dictionary entry, it's assigning the FIRST ore dictionary entry to that block rather than the first entry on the parent block.

replacing 'OreDictionary.getOreName(i)' with 'OreDictionary.getOreName(registrationIDs[i])' should fix the problem.

ghost commented 7 years ago

This also results in a lot of Tinkers' Construct Part Builder recipes: 2017-03-09_01 32 35

mallrat208 commented 7 years ago

That's a lot of Part Builders

mallrat208 commented 7 years ago

I'm going to go ahead and close this since as of the latest UBC for 1.10.2 this is fixed