Fixed bug with Neuroflux Governor increasing cost multiopliers. Increased TOR Router cost to 200k

This commit is contained in:
Daniel Xie 2017-05-29 21:29:57 -05:00
parent c4f6563f59
commit ec3f936f2b
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.crime_success_mult *= 1.01;
Player.hacknet_node_money_mult *= 1.01; Player.hacknet_node_money_mult *= 1.01;
Player.hacknet_node_purchase_cost_mult *= 1.01; Player.hacknet_node_purchase_cost_mult *= 0.99;
Player.hacknet_node_ram_cost_mult *= 1.01; Player.hacknet_node_ram_cost_mult *= 0.99;
Player.hacknet_node_core_cost_mult *= 1.01; Player.hacknet_node_core_cost_mult *= 0.99;
Player.hacknet_node_level_cost_mult *= 1.01; Player.hacknet_node_level_cost_mult *= 0.99;
Player.work_money_mult *= 1.01; Player.work_money_mult *= 1.01;

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