Factorio-Paranoidal_mod/bobrevamp_1.1.6/migrations/bobrevamp_0.15.1-rocket-fuel.lua
Aleksei-bird 7c9c708c92 Первый фикс
Пачки некоторых позиций увеличены
2024-03-01 20:54:33 +03:00

30 lines
851 B
Lua

game.reload_script()
for index, force in pairs(game.forces) do
force.reset_recipes()
force.reset_technologies()
if force.technologies["nitrogen-processing"] then
if force.technologies["nitrogen-processing"].researched then
if force.recipes["ammonia"] then
force.recipes["ammonia"].enabled = true
end
if force.recipes["nitric-oxide"] then
force.recipes["nitric-oxide"].enabled = true
end
end
else
if force.technologies["chemical-plant"].researched then
if force.recipes["ammonia"] then
force.recipes["ammonia"].enabled = true
end
if force.recipes["nitric-oxide"] then
force.recipes["nitric-oxide"].enabled = true
end
if force.recipes["nitrogen-dioxide"] then
force.recipes["nitrogen-dioxide"].enabled = true
end
end
end
end