FutureAstroMiner

Results 6 issues of FutureAstroMiner

Using Object.defineProperty like: ``` Object.defineProperty(Creep.prototype, 'boosts', { get() { if (!this._boosts) { this._boosts = _.compact(_.unique(_.map(this.body as BodyPartDefinition[], bodyPart => bodyPart.boost))); } return this._boosts; }, configurable: true, }); ``` and importing...

I am getting an error when trying to run npx after running npm install -g screeps-steamless-client. $ npx screeps-steamless-client /usr/local/lib/node_modules/screeps-steamless-client/dist/index.js:2 import os from 'os'; ^^ SyntaxError: Unexpected identifier at Module._compile...

I noticed the bot was running out of memory running on my private server and thought the transporter role was causing some of it. Nukers and Power Spawns are already...

enhancement

So something I found out recently, if the controller has downgraded, then `room.energyAvailable` might be greater than `room.energyCapacityAvailable` so your spawning stops due to `if (cost > room.energyAvailable)` in `spawn-manager`....

So I was doing some combat trials with your bot as an NPC on my private server and noticed that spawning had stopped. I managed to get a test that...

I noticed that some of the tests in the utilities test file will no longer work (due to some refactoring that was done last year. I have done some work...