Open 1.1.0: Missing Minetweaker scripts for nether ores

  • This section is closed. Please do bug reports over at the FTB GitHub repos.
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
Z

zeth_russ

Guest
Version:
1.1.0

What is the bug:
ExNihilo.zs adds recipes for the gravel variants of aobd Draconium, Mitril, exastris Cobalt and Ardite. It does not add the corresponding recipes for the sand and dust blocks. This means that you can use a compacting drawer for all normal ore compacting, but only for the first stage of ender and nether ores.

Mod & Version:


Paste.feed-the-beast.com log:


Can it be repeated:
  1. place crushed draconium ore in a compacting drawer.
Expected: compacting drawer lists draconium ore sand + crushed draconium ore
Actual: compacting drawer only lists crushed draconium ore

Known Fix:
add the following minetweaker lines:

Code:
recipes.addShapeless(<aobd:oreCrushedDraconium> * 4, [<aobd:oreSandDraconium>]);

recipes.addShapeless(<aobd:orePowderedDraconium> * 4, [<aobd:oreDustDraconium>]);
recipes.addShapeless(<aobd:oreCrushedMithril> * 4, [<aobd:oreSandMithril>]);
recipes.addShapeless(<aobd:orePowderedMithril> * 4, [<aobd:oreDustMithril>]);
recipes.addShapeless(<exastris:CobaltOreItem:1> * 4, [<exastris:CobaltOreBlock:1>]);
recipes.addShapeless(<exastris:CobaltOreItem:2> * 4, [<exastris:CobaltOreBlock:2>]);
recipes.addShapeless(<exastris:ArditeOreItem:1> * 4, [<exastris:ArditeOreBlock:1>]);
recipes.addShapeless(<exastris:ArditeOreItem:2> * 4, [<exastris:ArditeOreBlock:2>]);
recipes.addShapeless(<exastris:exnihilo.draconiumdust_crushed> * 4, [<exastris:draconiumdust_sand>]);
recipes.addShapeless(<exastris:exnihilo.draconiumdust_powdered> * 4, [<exastris:draconiumdust_dust>]);