diff --git a/src/overlords/Overlord.ts b/src/overlords/Overlord.ts index db059b425..3192726db 100644 --- a/src/overlords/Overlord.ts +++ b/src/overlords/Overlord.ts @@ -602,7 +602,7 @@ export abstract class Overlord { const [moveBoosts, nonMoveBoosts] = _.partition(neededBoostResources, resource => Abathur.isMoveBoost(resource)); - for (const boost of [...moveBoosts, nonMoveBoosts]) { // try to get move boosts first if they're available + for (const boost of [...moveBoosts, ...nonMoveBoosts]) { // try to get move boosts first if they're available const boostLab = _.find(evolutionChamber.boostingLabs, lab => lab.mineralType == boost); if (boostLab) { zerg.task = Tasks.getBoosted(boostLab, boost);