Removed the harvester. Introduced the cleaner (not active yet) spawners use full room capacity now.

This commit is contained in:
unknown
2023-08-30 23:37:04 +02:00
parent 112c3c3a97
commit eda20c2dce
6 changed files with 118 additions and 112 deletions

View File

@@ -26,8 +26,8 @@ function roomLayoutScan(room){
function jobScan(room){
if(!room.memory.jobs) room.memory.jobs = [{role:Role.UPGRADER}]
.concat(Array(2).fill({role: Role.BUILDER}))
.concat(Array(5).fill({role: Role.SUPPLIER}))
.concat(Array(4).fill({role: Role.BUILDER}))
.concat(Array(2).fill({role: Role.SUPPLIER}))
.concat(room.memory.layout.sources.map(s=> {return {role: Role.MINER, source: s}}));
}