Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions info.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"dependencies": [
"base >= 1.0",
"? SeaBlock >= 0.5.6",
"? LogisticAssemblingMachine-rebooted > 1.0.0",
"! Braver_New_World"
]
}
6 changes: 6 additions & 0 deletions scenarios/bnw/control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,12 @@ local function setupForce(force, surface, x, y, seablock_enabled)
chest_inventory.insert{name = "gun-turret", count = 2}
chest_inventory.insert{name = "firearm-magazine", count = 20}
end

local logisticsAssemblerReboot_enabled = game.active_mods["LogisticAssemblingMachine-rebooted"]
if (logisticsAssemblerReboot_enabled) then
chest_inventory.insert{name = "logistic-assembling-machine", count = 4}
end

-- solar panels and accumulators (left side)
surface.create_entity{name = "solar-panel", position = {x - 11, y - 2}, force = force, raise_built = true}
surface.create_entity{name = "solar-panel", position = {x - 11, y + 1}, force = force, raise_built = true}
Expand Down