Hi Scallfalke,
I've come to Nuclear and noticed that the recipe for uranium-processing did not include uranium-concentrate and instead had uranium-238 and a little -235 due to the Space Exploration mod explicitly overwriting the uranium-processing recipe.
A quick fix that worked for me was to create data-final-fixes.lua in the Schall Uranium Processing mod and add:
-- Ensure Uranium Processing recipe outputs Uranium Concentrate when Space Exploration is installed
if mods["space-exploration"] then
data.raw.recipe["uranium-processing"].results = {
{ type = "item", name = "uranium-concentrate", probability = 1, amount = 1 },
{ type = "item", name = "iron-ore", probability = 0.25, amount = 1 },
{ type = "item", name = "stone", probability = 0.5, amount = 1 }
}
end
Thats all that is needed to get the process working. Though I am not sure about any other compatibility issues yet.
Thanks for the great mod!