From 18dc76de6f5cff0e1ff84ff3dce5838561c485fa Mon Sep 17 00:00:00 2001 From: Modo Date: Sun, 11 Dec 2022 14:13:15 +0200 Subject: [PATCH] Fixed typo in tech multiplier disabler & changed crafting category to match other combinators. --- cybersyn/prototypes/tech.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cybersyn/prototypes/tech.lua b/cybersyn/prototypes/tech.lua index 35c2725..b788b53 100644 --- a/cybersyn/prototypes/tech.lua +++ b/cybersyn/prototypes/tech.lua @@ -8,9 +8,10 @@ combinator_recipe.enabled = false if (mods["nullius"]) then -- Enable recipe and place it just after regular station combinator_recipe.order = "nullius-eca" - -- Use the same costs (minus the train stop) and metadata as for LTN - combinator_recipe.category = "medium-crafting" + -- In Nullius, most combinators are tiny crafts + combinator_recipe.category = "tiny-crafting" combinator_recipe.always_show_made_in = true + -- Use the same costs (minus the train stop) as for LTN combinator_recipe.energy_required = 3 combinator_recipe.ingredients = { {"arithmetic-combinator", 2}, @@ -59,5 +60,5 @@ if (mods["nullius"]) then time = 25 } cybersyn_tech.prerequisites = { "nullius-checkpoint-optimization", "nullius-traffic-control" } - cybersyn_tech.ignore_cybersyn_tech_cost_multiplier = true + cybersyn_tech.ignore_tech_tech_cost_multiplier = true end \ No newline at end of file