We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code 1: this.wishlist(1, CombatSetups.zerglings.sourceKeeper);
Code 2: // the below applies to reapers and defenders if (!this.targetLair || !this.room || reaper.room != this.room || reaper.pos.isEdge) { // log.debugCreep(reaper, Going to room!); reaper.healSelfIfPossible(); reaper.goTo(this.pos); return; }
Going to room!
//in the above, !this.targetLair will always return true as there are no LairStructures in center core rooms
!this.targetLair
// Console output:
// Offending line:
info()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue summary
Description of issue:
Code 1:
this.wishlist(1, CombatSetups.zerglings.sourceKeeper);
Code 2:
// the below applies to reapers and defenders
if (!this.targetLair || !this.room || reaper.room != this.room || reaper.pos.isEdge) {
// log.debugCreep(reaper,
Going to room!
);reaper.healSelfIfPossible();
reaper.goTo(this.pos);
return;
}
//in the above,
!this.targetLair
will always return true as there are no LairStructures in center core roomsSteps to reproduce:
Error message:
Suggested fix (optional):
Other information:
info()
into console}The text was updated successfully, but these errors were encountered: