k2 red circuits faster
This commit is contained in:
parent
d912949488
commit
b0ef7a3d50
3 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,9 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 0.0.9
|
||||||
|
Date: 2022-12-30
|
||||||
|
Changes:
|
||||||
|
- K2: Final advanced circuit recipe is faster now
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.0.8
|
Version: 0.0.8
|
||||||
Date: 2022-12-29
|
Date: 2022-12-29
|
||||||
Changes:
|
Changes:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bzchlorine",
|
"name": "bzchlorine",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"factorio_version": "1.1",
|
"factorio_version": "1.1",
|
||||||
"title": "Salt & Chlorine",
|
"title": "Salt & Chlorine",
|
||||||
"author": "Brevven",
|
"author": "Brevven",
|
||||||
|
|
|
@ -6,7 +6,8 @@ util.remove_ingredient("advanced-circuit", "plastic-bar")
|
||||||
util.set_ingredient("advanced-circuit", "copper-cable", amt)
|
util.set_ingredient("advanced-circuit", "copper-cable", amt)
|
||||||
|
|
||||||
local amt = util.get_amount("advanced-circuit")
|
local amt = util.get_amount("advanced-circuit")
|
||||||
util.set_recipe_time("advanced-circuit", amt*2) -- more steps, so speed up final step
|
local factor = mods.Krastorio2 and 1 or 2
|
||||||
|
util.set_recipe_time("advanced-circuit", amt*factor) -- more steps, so speed up final step
|
||||||
|
|
||||||
if util.me.more() then
|
if util.me.more() then
|
||||||
util.add_ingredient("accumulator", "ferric-chloride", 2)
|
util.add_ingredient("accumulator", "ferric-chloride", 2)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue