From b2c899fa9a35651ca23a8b52478ce4474f5a5ac0 Mon Sep 17 00:00:00 2001 From: "John H. Uckele" Date: Sun, 5 Jan 2020 17:57:32 -0500 Subject: [PATCH] Increase buying speed for Warpstations w/ Sci IV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In the case that Scientist IV has been completed and a player has Warpstations being purchased by AutoStructure, it will currently trickle the structure purchases at just 2/10 per execution. This change lets AutoStructure purchase up to 1000 Warpstations in a single go since they’ll skip the building queue. --- main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main.js b/main.js index f2df397e..72224592 100644 --- a/main.js +++ b/main.js @@ -15105,6 +15105,7 @@ function buyAutoStructures(){ if (!setting[item]) continue; if (typeof setting.NurseryZones !== 'undefined' && game.global.world < setting.NurseryZones && item == "Nursery") continue; + if (item == "Warpstation" && game.global.sLevel >= 4 ) maxBuild = 1000; var building = game.buildings[item]; var purchased = building.purchased; var buyMax = setting[item].buyMax;