From 390819a97f14b9192733f3ef02e261d3fe810166 Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Tue, 21 Jul 2020 13:39:04 +0300 Subject: [PATCH] Change creep counters --- src/main.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.ts b/src/main.ts index f8a6879..b6ad103 100644 --- a/src/main.ts +++ b/src/main.ts @@ -56,12 +56,12 @@ export const loop = ErrorMapper.wrapLoop(() => { } } - const harvCount = 8; - const minHarvCount = Math.floor(harvCount * 0.6); + const harvCount = 4; + const minHarvCount = 2; makeCreep(CreepRole.HARVESTER, harvCount); - makeCreep(CreepRole.UPGRADER, 6); - makeCreep(CreepRole.BUILDER, 6); + makeCreep(CreepRole.UPGRADER, 8); + makeCreep(CreepRole.BUILDER, 8); callHarvestersFromOthers(minHarvCount);