Merge pull request #27 from danielyxie/dev

Fixed bug with Neuroflux Governor increasing cost multiopliers. Incre…
This commit is contained in:
danielyxie 2017-05-29 21:30:16 -05:00 committed by GitHub
commit 5d7750766c
2 changed files with 5 additions and 5 deletions

@ -1562,10 +1562,10 @@ applyAugmentation = function(aug, reapply=false) {
Player.crime_success_mult *= 1.01;
Player.hacknet_node_money_mult *= 1.01;
Player.hacknet_node_purchase_cost_mult *= 1.01;
Player.hacknet_node_ram_cost_mult *= 1.01;
Player.hacknet_node_core_cost_mult *= 1.01;
Player.hacknet_node_level_cost_mult *= 1.01;
Player.hacknet_node_purchase_cost_mult *= 0.99;
Player.hacknet_node_ram_cost_mult *= 0.99;
Player.hacknet_node_core_cost_mult *= 0.99;
Player.hacknet_node_level_cost_mult *= 0.99;
Player.work_money_mult *= 1.01;

@ -68,7 +68,7 @@ CONSTANTS = {
MaxLogCapacity: 40,
//How much a TOR router costs
TorRouterCost: 100000,
TorRouterCost: 200000,
MillisecondsPer20Hours: 72000000,
GameCyclesPer20Hours: 72000000 / 200,