Skip to content

Commit

Permalink
Bob's robot components renamed
Browse files Browse the repository at this point in the history
Construction and Logistics tool/brain have been combined
  • Loading branch information
KiwiHawk committed Aug 12, 2024
1 parent 27c3a08 commit fccbdd5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
24 changes: 8 additions & 16 deletions angelsindustries/prototypes/ordening/angels-logistics.lua
Original file line number Diff line number Diff line change
Expand Up @@ -166,22 +166,14 @@ if mods["boblogistics"] then
end
-- robot brains
if settings.startup["bobmods-logistics-robotparts"].value == true then
move_item("robot-brain-construction", "angels-robot-a", "b[construction]-a[brain]")
move_item("robot-brain-construction-2", "angels-robot-b", "b[construction]-a[brain]")
move_item("robot-brain-construction-3", "angels-robot-c", "b[construction]-a[brain]")
move_item("robot-brain-construction-4", "angels-robot-d", "b[construction]-a[brain]")
move_item("robot-tool-construction", "angels-robot-a", "b[construction]-b[tool]")
move_item("robot-tool-construction-2", "angels-robot-b", "b[construction]-b[tool]")
move_item("robot-tool-construction-3", "angels-robot-c", "b[construction]-b[tool]")
move_item("robot-tool-construction-4", "angels-robot-d", "b[construction]-b[tool]")
move_item("robot-brain-logistic", "angels-robot-a", "c[logistic]-a[brain]")
move_item("robot-brain-logistic-2", "angels-robot-b", "c[logistic]-a[brain]")
move_item("robot-brain-logistic-3", "angels-robot-c", "c[logistic]-a[brain]")
move_item("robot-brain-logistic-4", "angels-robot-d", "c[logistic]-a[brain]")
move_item("robot-tool-logistic", "angels-robot-a", "c[logistic]-b[tool]")
move_item("robot-tool-logistic-2", "angels-robot-b", "c[logistic]-b[tool]")
move_item("robot-tool-logistic-3", "angels-robot-c", "c[logistic]-b[tool]")
move_item("robot-tool-logistic-4", "angels-robot-d", "c[logistic]-b[tool]")
move_item("bob-robot-brain", "angels-robot-a", "b[robot]-a[brain]")
move_item("bob-robot-brain-2", "angels-robot-b", "b[robot]-a[brain]")
move_item("rbob-obot-brain-3", "angels-robot-c", "b[robot]-a[brain]")
move_item("bob-robot-brain-4", "angels-robot-d", "b[robot]-a[brain]")
move_item("bob-robot-tool", "angels-robot-a", "b[robot]-b[tool]")
move_item("bob-robot-tool-2", "angels-robot-b", "b[robot]-b[tool]")
move_item("bob-robot-tool-3", "angels-robot-c", "b[robot]-b[tool]")
move_item("bob-robot-tool-4", "angels-robot-d", "b[robot]-b[tool]")
if mods["bobwarfare"] and settings.startup["bobmods-warfare-robotupdate"].value then
move_item("robot-brain-combat", "angels-robot-a", "d[combat]-a[brain]")
move_item("robot-brain-combat-2", "angels-robot-b", "d[combat]-a[brain]")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ if angelsmods.industries.components then
{
name = "construction-robot",
ingredients = {
{ type = "item", name = "robot-brain-construction", amount = 1 },
{ type = "item", name = "robot-tool-construction", amount = 1 },
{ type = "item", name = "bob-robot-brain", amount = 1 },
{ type = "item", name = "bob-robot-tool", amount = 1 },
},
},
{
name = "logistic-robot",
ingredients = {
{ type = "item", name = "robot-brain-logistic", amount = 1 },
{ type = "item", name = "robot-tool-logistic", amount = 1 },
{ type = "item", name = "bob-robot-brain", amount = 1 },
{ type = "item", name = "bob-robot-tool", amount = 1 },
},
},
})
Expand Down

0 comments on commit fccbdd5

Please sign in to comment.