diff --git a/boblogistics/changelog.txt b/boblogistics/changelog.txt index 104e11fa5..1dfd56978 100644 --- a/boblogistics/changelog.txt +++ b/boblogistics/changelog.txt @@ -5,6 +5,7 @@ Date: ??? - Reduced the tier of electronics required for T1 robots #180 - Combined Construction and Logistics Brains and Tools #184 - Changed robot brains to use circuits rather than circuit components #184 + - Removed circuits from flying robot frame recipes #184 --------------------------------------------------------------------------------------------------- Version: 1.2.2 Date: 21. 02. 2024 diff --git a/boblogistics/prototypes/robot-parts.lua b/boblogistics/prototypes/robot-parts.lua index 45535468c..2b7a79866 100644 --- a/boblogistics/prototypes/robot-parts.lua +++ b/boblogistics/prototypes/robot-parts.lua @@ -1,6 +1,7 @@ if settings.startup["bobmods-logistics-flyingrobotframes"].value == true then data.raw.item["flying-robot-frame"].order = "j[flying-robot-frame-1]" data.raw.item["flying-robot-frame"].subgroup = "bob-robot-parts" + bobmods.lib.recipe.remove_ingredient("flying-robot-frame", "electronic-circuit") data:extend({ { @@ -40,7 +41,6 @@ if settings.startup["bobmods-logistics-flyingrobotframes"].value == true then { "electric-engine-unit", 1 }, { "battery", 2 }, { "steel-plate", 1 }, - { "advanced-circuit", 3 }, }, result = "flying-robot-frame-2", }, @@ -53,7 +53,6 @@ if settings.startup["bobmods-logistics-flyingrobotframes"].value == true then { "electric-engine-unit", 1 }, { "battery", 2 }, { "steel-plate", 1 }, - { "processing-unit", 3 }, }, result = "flying-robot-frame-3", }, @@ -66,7 +65,6 @@ if settings.startup["bobmods-logistics-flyingrobotframes"].value == true then { "electric-engine-unit", 1 }, { "battery", 2 }, { "steel-plate", 1 }, - { "processing-unit", 3 }, }, result = "flying-robot-frame-4", },