Added two new factions, Slum Snakes and Tetrads. Added 4 more augmentations for those factions. Fixed some issues with prestiging

This commit is contained in:
Daniel Xie
2017-05-12 13:12:32 -05:00
parent 9f9ea73651
commit 041f195241
7 changed files with 166 additions and 35 deletions
+14
View File
@@ -302,4 +302,18 @@ function AllServersToMoneyMap() {
this[ip] = 0;
}
}
}
AllServersToMoneyMap.prototype.printConsole = function() {
console.log("Printing AllServersToMoneyMap");
for (var ip in this) {
if (this.hasOwnProperty(ip)) {
var serv = AllServers[ip];
if (serv == null) {
console.log("Warning null server encountered with ip: " + ip);
continue;
}
console.log(ip + "(" + serv.hostname + "): " + this[ip]);
}
}
}