Compare commits
No commits in common. "843c933353937ddbf6ea8c3567bd468d4ebc5a78" and "b241032f67ff6f9335c1c53fbeccc55e5912bbb2" have entirely different histories.
843c933353
...
b241032f67
2 changed files with 4 additions and 4 deletions
|
|
@ -171,7 +171,7 @@ if mods["space-exploration"] then
|
|||
order = "z-01",
|
||||
enabled = false,
|
||||
energy_required = 10,
|
||||
ingredients = {{type="item", name=mods["Krastorio2"] and "kr-glass" or "glass", amount=2},{type="item", name=mods["Krastorio2"] and "kr-silicon" or "silicon", amount=2},{type="item", name="cobalt-plate", amount=4}},
|
||||
ingredients = {{type="item", name="glass", amount=2},{type="item", name=mods["Krastorio2"] and "kr-silicon" or "silicon", amount=2},{type="item", name="cobalt-plate", amount=4}},
|
||||
results = {{type="item", name="se-data-storage-substrate", amount=1}, {type="item", name="se-scrap", amount=1, probability=0.5}},
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@ if mods["IfNickel-Updated"] then
|
|||
util.set_main_product("nickel-plate", "nickel-plate")
|
||||
|
||||
if mods["Krastorio2"] then
|
||||
util.add_product("nickel-plate", {type="item", name="cobaltite-ore", amount=1})
|
||||
util.add_product("nickel-plate", {name="cobaltite-ore", amount=1})
|
||||
else
|
||||
util.add_product("nickel-plate", {type="item", name="cobaltite-ore", amount=1, probability=0.2})
|
||||
util.add_product("nickel-plate", {name="cobaltite-ore", amount=1, probability=0.2})
|
||||
end
|
||||
end
|
||||
|
||||
|
|
@ -52,7 +52,7 @@ if mods["Krastorio2"] then
|
|||
end
|
||||
|
||||
if mods["space-exploration"] then
|
||||
util.add_product(mods["space-exploration"] and "se-scrap-recycling", {type="item", name="cobaltite-ore", amount=1, probability=0.05})
|
||||
util.add_product(mods["space-exploration"] and "se-scrap-recycling", {name="cobaltite-ore", amount=1, probability=0.05})
|
||||
|
||||
util.remove_ingredient("se-space-plasma-generator", "nickel-electromagnet")
|
||||
util.add_ingredient("se-space-plasma-generator", "cobalt-electromagnet", 100)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue