From 0f59d48c53cf3eadb9f06168ba606e365e666f10 Mon Sep 17 00:00:00 2001 From: Daniel Xie Date: Tue, 4 Jul 2017 23:02:19 -0500 Subject: [PATCH] Fixed typos --- src/Constants.js | 5 +++-- src/FactionInfo.js | 2 +- src/StockMarket.js | 2 +- src/engine.js | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/Constants.js b/src/Constants.js index 39d4fb72c..e63460d6d 100644 --- a/src/Constants.js +++ b/src/Constants.js @@ -19,7 +19,7 @@ CONSTANTS = { /* Hacknet Node constants */ HacknetNodeMoneyGainPerLevel: 1.55, - HacknetNodePurchaseNextMult: 1.42, //Multiplier when purchasing an additional hacknet node + HacknetNodePurchaseNextMult: 1.75, //Multiplier when purchasing an additional hacknet node HacknetNodeUpgradeLevelMult: 1.045, //Multiplier for cost when upgrading level HacknetNodeUpgradeRamMult: 1.28, //Multiplier for cost when upgrading RAM HacknetNodeUpgradeCoreMult: 1.49, //Multiplier for cost when buying another core @@ -677,7 +677,7 @@ CONSTANTS = { "When you purchase an Augmentation, the price of purchasing another Augmentation increases by 90%. This multiplier stacks for " + "each Augmentation you purchase. You will not gain the benefits of your purchased Augmentations until you install them. You can " + "choose to install Augmentations through the 'Augmentations' menu tab. Once you install your purchased Augmentations, " + - "their costs are reset back to the original price.

" + "their costs are reset back to the original price.

" + "Unfortunately, installing Augmentations has side effects. You will lose most of the progress you've made, including your " + "skills, stats, and money. You will have to start over, but you will have all of the Augmentations you have installed to " + "help you progress.

" + @@ -914,6 +914,7 @@ CONSTANTS = { "greater than 200) by about 10-15%
" + "-Rebalanced company/company position reputation gains and requirements
" + "-Studying at a university now gives slightly more EXP and early jobs give slightly less EXP
" + + "-Significantly increased cost multiplier for purchasing additional Hacknet Nodes
" + "-Updated Faction descriptions
" + "-'top' Terminal command implemented courtesy of Github user LTCNugget

" + "v0.24.0
" + diff --git a/src/FactionInfo.js b/src/FactionInfo.js index cd88b244a..a021b3bde 100644 --- a/src/FactionInfo.js +++ b/src/FactionInfo.js @@ -110,7 +110,7 @@ FactionInfo = { SilhouetteInfo: "Corporations have filled the void of power left behind by the collapse of Western government. The issue is they've become so big " + "that you don't know who they're working for. And if you're employed at one of these corporations, you don't even know who you're working " + "for.

" + - "That's terror. Terror, fear, and corruption. All born into the system, all propagated by the system." + "That's terror. Terror, fear, and corruption. All born into the system, all propagated by the system.", TetradsInfo: "Following the Mandate of Heaven and Carrying out the Way", diff --git a/src/StockMarket.js b/src/StockMarket.js index 674beb36f..3deb0ea80 100644 --- a/src/StockMarket.js +++ b/src/StockMarket.js @@ -356,7 +356,7 @@ function displayStockMarketContent() { if (!stockMarketContentCreated && Player.hasWseAccount) { console.log("Creating Stock Market UI"); - document.getElementById("stock-market-commission").innerText = + document.getElementById("stock-market-commission").innerHTML = "Commission Fees: Every transaction you make has a $" + formatNumber(CONSTANTS.StockMarketCommission, 2) + " commission fee.

" + "WARNING: When you reset after installing Augmentations, the Stock Market is reset. " + diff --git a/src/engine.js b/src/engine.js index 9f736437b..ee4592bb1 100644 --- a/src/engine.js +++ b/src/engine.js @@ -195,7 +195,7 @@ var Engine = { mainMenu.style.visibility = "hidden"; Engine.Display.redPillContent.style.visibility = "visible"; Engine.currentPage = Engine.Page.RedPill; - } + }, loadInfiltrationContent: function() { Engine.hideAllContent(); @@ -846,7 +846,7 @@ var Engine = { //Red Pill / Hack World Daemon Engine.Display.redPillContent = document.getElementById("red-pill-container"); - Engine.DIsplay.redPillContent.style.visibility = "hidden"; + Engine.Display.redPillContent.style.visibility = "hidden"; //Init Location buttons initLocationButtons();