More nerfs to combat augmentations. Randomized server parameters. Added Log and Kill button to Active SCripts panel

This commit is contained in:
Daniel Xie
2017-06-19 09:54:11 -05:00
parent 8ce228c71f
commit e2fbca1ef0
14 changed files with 136 additions and 100 deletions
+2 -1
View File
@@ -19,7 +19,8 @@ BitburnerSaveObject.prototype.saveGame = function() {
this.PlayerSave = JSON.stringify(Player);
//Delete all logs from all running scripts
TempAllServers = jQuery.extend(true, {}, AllServers); //Deep copy
var TempAllServers = JSON.parse(JSON.stringify(AllServers), Reviver);
//var TempAllServers = jQuery.extend(true, {}, AllServers); //Deep copy
for (var ip in TempAllServers) {
var server = TempAllServers[ip];
if (server == null) {continue;}