DNET: Add JS object properties as server names; refactor save/load/server storage to support this (#2482)

This commit is contained in:
Michael Ficocelli
2026-02-10 03:13:47 -05:00
committed by GitHub
parent b99e522d1c
commit bab6280735
14 changed files with 213 additions and 120 deletions
+1 -1
View File
@@ -232,7 +232,7 @@ function LogWindow({ hidden, script, onClose }: LogWindowProps): React.ReactElem
}
// Reset some things, because we're reusing the RunningScript instance
script.ramUsage = ramUsage;
script.dataMap = {};
script.dataMap = new Map();
script.onlineExpGained = 0;
script.onlineMoneyMade = 0;
script.onlineRunningTime = 0.01;