Merge pull request #322 from hydroflame/time-since-bitnode

added time since last bitnode timer
This commit is contained in:
danielyxie
2018-06-22 15:13:03 -05:00
committed by GitHub
3 changed files with 14 additions and 0 deletions
+2
View File
@@ -201,6 +201,7 @@ function PlayerObject() {
this.lastUpdate = 0;
this.totalPlaytime = 0;
this.playtimeSinceLastAug = 0;
this.playtimeSinceLastBitnode = 0;
//Production since last Augmentation installation
this.scriptProdSinceLastAug = 0;
@@ -390,6 +391,7 @@ PlayerObject.prototype.prestigeSourceFile = function() {
this.corporation = 0;
this.playtimeSinceLastAug = 0;
this.playtimeSinceLastBitnode = 0;
this.scriptProdSinceLastAug = 0;
}