diff --git a/index.html b/index.html
index 48a040d0c..e53f94603 100644
--- a/index.html
+++ b/index.html
@@ -55,6 +55,7 @@
+
diff --git a/src/Augmentations.js b/src/Augmentations.js
index 6e00d6cda..6b71128cc 100644
--- a/src/Augmentations.js
+++ b/src/Augmentations.js
@@ -790,7 +790,7 @@ initAugmentations = function() {
HacknetNodeKernelDNI.setInfo("Installs a Direct-Neural Interface jack into the arm that is capable of connecting to a " +
"Hacknet Node. This lets the user access and manipulate the Node's kernel using the mind's " +
"electrochemical signals.
" +
- "This augmentation increases the amount of money produced by Hacknet Nodes by 50%.");
+ "This augmentation increases the amount of money produced by Hacknet Nodes by 30%.");
HacknetNodeKernelDNI.addToFactions(["Netburners"]);
if (augmentationExists(AugmentationNames.HacknetNodeKernelDNI)) {
HacknetNodeKernelDNI.owned = Augmentations[AugmentationNames.HacknetNodeKernelDNI].owned;
@@ -803,7 +803,7 @@ initAugmentations = function() {
HacknetNodeCoreDNI.setInfo("Installs a Direct-Neural Interface jack into the arm that is capable of connecting " +
"to a Hacknet Node. This lets the user access and manipulate the Node's processing logic using " +
"the mind's electrochemical signals.
" +
- "This augmentation increases the amount of money produced by Hacknet Nodes by 75%.");
+ "This augmentation increases the amount of money produced by Hacknet Nodes by 50%.");
HacknetNodeCoreDNI.addToFactions(["Netburners"]);
if (augmentationExists(AugmentationNames.HacknetNodeCoreDNI)) {
HacknetNodeCoreDNI.owned = Augmentations[AugmentationNames.HacknetNodeCoreDNI].owned;
@@ -1531,10 +1531,10 @@ applyAugmentation = function(aug, faction) {
Player.hacknet_node_purchase_cost_mult *= 0.9;
break;
case AugmentationNames.HacknetNodeKernelDNI:
- Player.hacknet_node_money_mult *= 1.50;
+ Player.hacknet_node_money_mult *= 1.30;
break;
case AugmentationNames.HacknetNodeCoreDNI:
- Player.hacknet_node_money_mult *= 1.75;
+ Player.hacknet_node_money_mult *= 1.50;
break;
//Misc augmentations
diff --git a/src/Constants.js b/src/Constants.js
index 6700af277..fd64f48ee 100644
--- a/src/Constants.js
+++ b/src/Constants.js
@@ -21,8 +21,8 @@ CONSTANTS = {
HacknetNodeMoneyGainPerLevel: 1.25,
HacknetNodePurchaseNextMult: 1.33, //Multiplier when purchasing an additional hacknet node
HacknetNodeUpgradeLevelMult: 1.04, //Multiplier for cost when upgrading level
- HacknetNodeUpgradeRamMult: 1.21, //Multiplier for cost when upgrading RAM
- HacknetNodeUpgradeCoreMult: 1.41, //Multiplier for cost when buying another core
+ HacknetNodeUpgradeRamMult: 1.22, //Multiplier for cost when upgrading RAM
+ HacknetNodeUpgradeCoreMult: 1.42, //Multiplier for cost when buying another core
HacknetNodeMaxLevel: 200,
HacknetNodeMaxRam: 64,
diff --git a/src/Terminal.js b/src/Terminal.js
index d2dc1ba93..4a8b8a77d 100644
--- a/src/Terminal.js
+++ b/src/Terminal.js
@@ -492,9 +492,13 @@ var Terminal = {
if (commandArray.length == 1) {
printAliases();
} else if (commandArray.length == 2) {
-
+ if (parseAliasDeclaration(commandArray[1])) {
+
+ } else {
+ post('Incorrect usage of alias command. Usage: alias [aliasname="value"]'); return;
+ }
} else {
- post("Incorrect usage of alias command. Usage: alias [aliasname='value'"); return;
+ post('Incorrect usage of alias command. Usage: alias [aliasname="value"]'); return;
}
break;