[1.12] Aluminum/Iridum/NoMansLib-Mithril/AA-Black-Quartz compatibility
llloyd4 opened this issue · 22 comments
Please use the search functionality before reporting an issue. Also take a look at the closed issues!
Issue description:
I setup two Elite Factories, a Enrichment Chamber and a Smelter, the one feeds into the other for basic ore doubling. So the Enrichment Chamber has no issues turning TD Aluminum and Iridum ore into two dust but it chokes at smelting it, the Elite Smelter refuses to accept it to turn them into ingots. The Elite Enrichment Chamber, on the other hand, refuses to take NoManLib's Mithril and Actually Additions Black Quartz Ore. I had to build a Pulverizer / Redstone Furnace setup just for those 4.
Steps to reproduce:
- Build an Enrichment Chamber and Smelter
- Set them up so the Chamber auto ejects into the Smelter
- Put TD Aluminum Ore or Iridum Ore into the Chamber
- Watch the Chamber turn them into Pulverized Aluminum or Iridium but then choke as it can't empty into the Smelter.
Version (make sure you are on the latest version before reporting):
Forge: 1.12-14.21.1.2443
Mekanism: 1.12.1-9.4.318
Other relevant version:
If a (crash)log is relevant for this issue, link it here: (It's almost always relevant)
[gist/pastebin/etc link here]
Regarding the dusts smelting to ingots: do they work in a vanilla furnace? The smelter does use the vanilla smeltery table to lookup what can be smelted.
Aluminium & Iridium is a COFH issue. They removed the smelting recipe (unless TE is not loaded). CoFH/ThermalFoundation@fadde12
Mithril & BQuarts we can probably add to the minor compat list.
Really. How odd. I have TE installed and have been processing TE aluminum and iridium with the pulverizer / redstone furnace for a while now. I upgraded to the Factories as they're faster once I put in all the speed an energy upgrades into them and bump up energy production. Well, nothing you can do about it.
Edit: Here we are, according to JEI for the Iridium and Aluminum dusts there is only a Redstone Furnace, Induction Furnace, or IE Arc Furnace recipes. hmm At a guess they are doing something akin to TR Titanium that can only be run though a TR Blast Furnace.
Smelting is apparently Work As Intended (https://github.com/CoFH/Feedback/issues/474).
Mithril and BlackQuarts could be added as @thiakil mentioned.
Mini crafttweaker tutorial adding smelting recipes:
furnace.addRecipe(output, input, xp);
Example:
furnace.addRecipe(minecraft:speckled_melon, minecraft:melon, 1500);
More info at https://crafttweaker.readthedocs.io/en/latest/Vanilla/Recipes/Recipes_Furnace/
Yea, that old version which isn't supported by us anymore ;) newer versions do not have that support yet..
@thommy101 Do I want to use the Meta's Unlocalized Name? So...
furnace.addRecipe{item.thermalfoundation.material.ingotaluminum, item.thermalfoundation.material.dustAluminum,0.3);
? As they both are called "thermalfoundation:material" , just one is metadata 68 (for the dust) and 132 (ingot) but same item number.
You can define the meta data, I know it's defined somewhere on the linked read the docs above ;)
@thommy101 I could, in theory, even add the enrichment chamber recipes, hmm... peers
mods.mekanism:machineblock:0.addrecipe
by the looks of it?
You could, if you're using 1.7 ;) Any version higher than that doesn't support craft/modtweaker yet
Includes what in their packs? External mod support for Craft/MineTweaker has always been done by ModTweaker.
Your best bet for adding smelting recipes would be to use the oredict entries. I think it would be <ore:dustAluminum>
for example.