Fix typo with Source File 12

This commit is contained in:
danielyxie 2018-07-05 00:00:13 -05:00
parent 7cc759f314
commit a165880fff
2 changed files with 6 additions and 6 deletions

@ -53289,9 +53289,9 @@ function applySourceFile(srcFile) {
_Player__WEBPACK_IMPORTED_MODULE_0__["Player"].work_money_mult *= incMult;
_Player__WEBPACK_IMPORTED_MODULE_0__["Player"].company_rep_mult *= incMult;
break;
case 12: //The testing ground
var inc = 1 + (srcFile.level/100);
var dec = 1 - (srcFile.level/100);
case 12: //The Recursion
var inc = 1 + (srcFile.lvl/100);
var dec = 1 - (srcFile.lvl/100);
_Player__WEBPACK_IMPORTED_MODULE_0__["Player"].hacking_chance_mult *= inc;
_Player__WEBPACK_IMPORTED_MODULE_0__["Player"].hacking_speed_mult *= inc;

@ -197,9 +197,9 @@ function applySourceFile(srcFile) {
Player.work_money_mult *= incMult;
Player.company_rep_mult *= incMult;
break;
case 12: //The testing ground
var inc = 1 + (srcFile.level/100);
var dec = 1 - (srcFile.level/100);
case 12: //The Recursion
var inc = 1 + (srcFile.lvl/100);
var dec = 1 - (srcFile.lvl/100);
Player.hacking_chance_mult *= inc;
Player.hacking_speed_mult *= inc;