Schall Uranium Processing


Separate pure uranium-235 and pure uranium-238 items? Real-world nuclear industry do NOT work like that! This mod introduces more realistic uranium items of different grades and more realistic uranium enrichment processing. Recipes are kept simple, so even vanilla players will find this easy to master with. (Locale: English, Deutsch, 正體中文, 简体中文, Português Brasileiro, Русский)

Content
1 year, 2 months ago
0.17 - 2.0
10.2K
Manufacturing

b Compatibility of uranium-processing with with Space Exploration

18 days ago

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!

New response