mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-04 06:37:49 +02:00
Reverse const change in Script RAM parser. Built documentation
This commit is contained in:
+1
-1
@@ -425,7 +425,7 @@ function parseOnlyRamCalculate(server, code, workerScript) {
|
||||
const unresolvedRefs = Object.keys(dependencyMap).filter(s => s.startsWith(initialModule));
|
||||
const resolvedRefs = new Set();
|
||||
while (unresolvedRefs.length > 0) {
|
||||
let ref = unresolvedRefs.shift();
|
||||
const ref = unresolvedRefs.shift();
|
||||
resolvedRefs.add(ref);
|
||||
|
||||
if (ref.endsWith(".*")) {
|
||||
|
||||
Reference in New Issue
Block a user