From 37ad8e3c70ec2e8713198b84c47973105423a595 Mon Sep 17 00:00:00 2001 From: Jon Winsley Date: Fri, 20 Aug 2021 12:18:19 -0400 Subject: [PATCH] Adding construction cost for factory --- index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index dc8eeda..dee5786 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,8 @@ module.exports = function (config) { "lab": 5000, "terminal": 10000, "container": 500, - "nuker": 10000 + "nuker": 10000, + "factory": 10000 } config.common.constants.BODYPART_COST = { @@ -47,4 +48,4 @@ module.exports = function (config) { config.common.constants.MINERAL_REGEN_TIME = 20000 } -}; \ No newline at end of file +};