Ore chunk not enrichable
sadfaceman opened this issue ยท 2 comments
Modpack Version:
1.0.6
Describe the bug
Unable to put in Zinc Ore Chunk, Silver Ore Chunk, and Aluminum Ore Chunks into the Enriching Factory to turn them into dusts.
To Reproduce
Steps to reproduce the behavior:
- Attempt to put in either into the machine
- Nothing happens
Expected behavior
Chunks goes into the machine and dusts comes out.
Additional context
Might be an idea to align all the chunks on whether or not they should go via the enrichment machine or the crusher.
Can see that the platinum and cobalt goes into the crusher, over the enricher
This also means that neither of these 4 chunks are being able to be put into the chemical injection chamber nor the purification chamber
Thanks for taking the time to write up a good issue description - it is appreciated!
However... As soon as you have the singularities this is no longer an issue as there's no need to bother doubling an already infinite resource.
If I find myself with free time (which is very scarce unfortunately), I might look into this again, but if I'm being honest with myself, this is something I'm unlikely to change any time soon, if ever. I'm going to close this issue for now though.
Okay, I understand your reason.
Anyway, I decided to make a minor js for adding these remaining chunks into the recipe list.
Feel free to use it if you want to make an update for the pack at some point in time when you have time:
onEvent('recipes', e => { e.custom({ "type": "mekanism:enriching", "input": { "ingredient": { "tag": "forge:ores/cobalt" } }, "output": { "item": "cuboidmod:cobalt_dust", "count": 2 } }) e.custom({ "type": "mekanism:enriching", "input": { "ingredient": { "tag": "forge:ores/platinum" } }, "output": { "item": "kubejs:platinum_dust", "count": 2 } }) e.custom({ "type": "mekanism:enriching", "input": { "ingredient": { "tag": "forge:ores/aluminum" } }, "output": { "item": "immersiveengineering:dust_aluminum", "count": 2 } }) e.custom({ "type": "mekanism:enriching", "input": { "ingredient": { "tag": "forge:ores/zinc" } }, "output": { "item": "cuboidmod:zinc_dust", "count": 2 } }) e.custom({ "type": "mekanism:enriching", "input": { "ingredient": { "tag": "forge:ores/silver" } }, "output": { "item": "immersiveengineering:dust_silver", "count": 2 } }) })