From 8a255c5d2ec4355448baaff505936774c2a02d4d Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Wed, 23 Dec 2020 17:09:25 -0500 Subject: [PATCH] slaves --- src/js/utilsFC.js | 9 --------- src/js/utilsSlaves.js | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js index 956d773cb39..4367d1161da 100644 --- a/src/js/utilsFC.js +++ b/src/js/utilsFC.js @@ -94,15 +94,6 @@ globalThis.arrayToSentence = function(array) { return array.reduce((res, ch, i, arr) => res + (i === arr.length - 1 ? ' and ' : ', ') + ch); }; -/** - * @param {string[]} [assignments] array of assignment strings. The default is to count for all assignments - * @returns {Object.<string, number>} - */ -App.Utils.countAssignmentWorkers = function(assignments) { - assignments = assignments || Object.values(Job); - return assignments.reduce((acc, cur) => { acc[cur] = V.JobIDMap[cur].size; return acc; }, {}); -}; - /** Notify the game that the sidebar needs to be refreshed as soon as possible, but do not do it immediately. * This allows us to call this function repeatedly without impacting performance (for example, from repX() and cashX()). * The game will redraw the sidebar exactly once, as soon as all the scripts have finished executing. diff --git a/src/js/utilsSlaves.js b/src/js/utilsSlaves.js index ff68e668055..79222bba4de 100644 --- a/src/js/utilsSlaves.js +++ b/src/js/utilsSlaves.js @@ -226,3 +226,12 @@ App.Utils.countFacilityWorkers = function(facilities = null, mapping = {}) { acc[mapping[cur.desc.baseName] || cur.desc.baseName] = cur.employeesIDs().size; return acc; }, {}); }; + +/** + * @param {string[]} [assignments] array of assignment strings. The default is to count for all assignments + * @returns {Object.<string, number>} + */ +App.Utils.countAssignmentWorkers = function(assignments) { + assignments = assignments || Object.values(Job); + return assignments.reduce((acc, cur) => { acc[cur] = V.JobIDMap[cur].size; return acc; }, {}); +}; -- GitLab