mirror of
https://github.com/paradizelost/screeps.git
synced 2024-11-25 02:14:44 -06:00
trying to fix terminal auto sell
This commit is contained in:
parent
1d54eae2a6
commit
9137f805da
@ -49,9 +49,11 @@ let Phase1 = {
|
|||||||
require('proc.spawning').spawnminer(room)
|
require('proc.spawning').spawnminer(room)
|
||||||
} else { if(Game.flags.debug && Game.flags.debug.room == Game.rooms[room]){console.log("Not spawning miner in " + room + ", waiting for regen")}}
|
} else { if(Game.flags.debug && Game.flags.debug.room == Game.rooms[room]){console.log("Not spawning miner in " + room + ", waiting for regen")}}
|
||||||
}
|
}
|
||||||
if((Game.rooms[room].terminal.storage[RESOURCE_ENERGY] > 200000 )){
|
if(Game.rooms[room].find(FIND_MY_STRUCTURES, {filter: {structureType: STRUCTURE_TERMINAL}}).length > 0){
|
||||||
|
if(Game.rooms[room].terminal.store[RESOURCE_ENERGY]>200000){
|
||||||
require('proc.market').sellEnergy(room)
|
require('proc.market').sellEnergy(room)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
//require('proc.market').sellEnergy(room)
|
//require('proc.market').sellEnergy(room)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user