mirror of
https://github.com/paradizelost/screeps.git
synced 2024-11-25 02:14:44 -06:00
12 lines
396 B
JavaScript
12 lines
396 B
JavaScript
let roleMiner = {
|
|
run: function(creep) {
|
|
if(Game.getObjectById(creep.memory.destsource.id)==undefined){creep.memory.destsource=undefined}
|
|
let mysource=Game.getObjectById(creep.memory.destsource.id)
|
|
{
|
|
if(creep.harvest(mysource) == ERR_NOT_IN_RANGE) {
|
|
creep.travelTo(mysource);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
module.exports = roleMiner; |