From dd75c1b2d2eb426a99f60f83977790838f3fc3a3 Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Thu, 10 Jun 2021 08:54:21 -0400 Subject: [PATCH 1/5] Fixed typo in Infiltration.js --- src/Infiltration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infiltration.js b/src/Infiltration.js index 2ac800e29..dc6ca5116 100644 --- a/src/Infiltration.js +++ b/src/Infiltration.js @@ -591,7 +591,7 @@ function updateInfiltrationButtons(inst, scenario) { "Attempt to kill the security guard. You have a " + numeralWrapper.formatPercentage(killChance, 2) + " chance of success. " + "If you succeed, the security level will increase by 5%. If you fail, " + - "the security level will decrease by 10%. "; + "the security level will increase by 10%. "; document.getElementById("infiltration-knockout").innerHTML = "Knockout" + "" + From 34b3843e187d5c1ea504c535808a91ec5aa8abc6 Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Thu, 10 Jun 2021 08:55:06 -0400 Subject: [PATCH 2/5] Fixed typo in PlayerObjectGeneralMethods.jsx --- src/PersonObjects/Player/PlayerObjectGeneralMethods.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PersonObjects/Player/PlayerObjectGeneralMethods.jsx b/src/PersonObjects/Player/PlayerObjectGeneralMethods.jsx index eddfa8b72..157377f81 100644 --- a/src/PersonObjects/Player/PlayerObjectGeneralMethods.jsx +++ b/src/PersonObjects/Player/PlayerObjectGeneralMethods.jsx @@ -660,7 +660,7 @@ export function work(numCycles) { const penalty = this.cancelationPenalty(); - const penaltyString = penalty === 0.5 ? 'half' : 'three quarter' + const penaltyString = penalty === 0.5 ? 'half' : 'three-quarters' var elem = document.getElementById("work-in-progress-text"); ReactDOM.render(<> From 6a8aa79396048c02831fe842c0db64cf280ff96e Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Thu, 10 Jun 2021 08:56:53 -0400 Subject: [PATCH 3/5] Fixed capitalization error in Quotes.txt --- Quotes.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Quotes.txt b/Quotes.txt index e908c0697..496bb55b3 100644 --- a/Quotes.txt +++ b/Quotes.txt @@ -1,13 +1,13 @@ Collection of Quotes -The past is relevant only as data +The past is relevant only as data. Pull on the new flesh like borrowed gloves and burn your fingers once again. A weapon is a tool. A tool for killing and destroying. And there will be times when you must kill and destroy. Then you will choose and equip yourself with the tools that you need. But remember the weakness of weapons. They are an extension -- -You are the killer and destroyer. You are whole, with or without them. +you are the killer and destroyer. You are whole, with or without them. For all that we have done, as a civilization, as individuals, the universe is not stable, and nor is any single thing within it. Stars consume themselves, From 1b734be895d68e2680b8fa38d01ab3c2ee1dc4f7 Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Thu, 10 Jun 2021 09:05:16 -0400 Subject: [PATCH 4/5] Test to fix server/node text --- src/Hacknet/ui/PlayerInfo.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Hacknet/ui/PlayerInfo.jsx b/src/Hacknet/ui/PlayerInfo.jsx index 0db2cc528..7afab39b4 100644 --- a/src/Hacknet/ui/PlayerInfo.jsx +++ b/src/Hacknet/ui/PlayerInfo.jsx @@ -29,11 +29,10 @@ export function PlayerInfo(props) { {Money(Player.money.toNumber())}
{ - hasServers && - <>Hashes: {Hashes(Player.hashManager.hashes)} / {Hashes(Player.hashManager.capacity)}
+ hasServers && <>Hashes: {Hashes(Player.hashManager.hashes)} / {Hashes(Player.hashManager.capacity)}
} - Total Hacknet Node Production: + Total Hacknet {hasServers ? 'Server' : 'Node'} Production: {prod}

) From 4cd17607e61b845b0e7a498cfaaa4dfec395f061 Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Thu, 10 Jun 2021 09:19:44 -0400 Subject: [PATCH 5/5] Fixed server/node text always displaying as Hacknet Nodes even if the player has servers unlocked --- src/Hacknet/ui/Root.jsx | 2 +- src/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Hacknet/ui/Root.jsx b/src/Hacknet/ui/Root.jsx index 4f77bbb07..008289033 100644 --- a/src/Hacknet/ui/Root.jsx +++ b/src/Hacknet/ui/Root.jsx @@ -129,7 +129,7 @@ export class HacknetRoot extends React.Component { return (
-

Hacknet Nodes

+

Hacknet {hasHacknetServers() ? "Servers" : "Nodes"}

diff --git a/src/index.html b/src/index.html index 427f7589c..1303d7a12 100644 --- a/src/index.html +++ b/src/index.html @@ -67,7 +67,7 @@ if (htmlWebpackPlugin.options.googleAnalytics.trackingId) { %>