From d29797ce1e52b306459ae24d850e45ad488f143a Mon Sep 17 00:00:00 2001 From: danielyxie Date: Wed, 28 Mar 2018 11:35:34 -0500 Subject: [PATCH] Update Faction info for Fulcrum and NWO --- dist/bundle.js | 13 ++++++++++--- src/FactionInfo.js | 11 +++++++++-- utils/HelperFunctions.js | 2 +- 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/dist/bundle.js b/dist/bundle.js index d6ccb00b8..68eba5156 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -2571,7 +2571,7 @@ function sizeOfObject(obj) { //e.g. addOffset(100, 5) will return anything from 95 to 105. //The percentage argument must be between 0 and 100; function addOffset(n, percentage) { - if (percentage < 0 || percentage > 100) {return;} + if (percentage < 0 || percentage > 100) {return n;} var offset = n * (percentage / 100); @@ -62682,7 +62682,12 @@ let FactionInfo = { BladeIndustriesInfo: "Augmentation is salvation", - NWOInfo: "The human being created civilization not because of willingness but of a need to be assimilated into higher orders of structure and meaning.", + NWOInfo: "The human being does not truly desire freedom. It wants " + + "to be observed, understood, and judged. It wants to be given purpose and " + + "direction in its life. That is why humans created God. " + + "And that is why humans created civilization - " + + "not because of willingness, " + + "but because of a need to be incorporated into higher orders of structure and meaning.", ClarkeIncorporatedInfo: "Unlocking the power of the genome", @@ -62694,7 +62699,9 @@ let FactionInfo = { KuaiGongInternationalInfo: "Dream big. Work hard. Make history.", //Other Corporations - FulcrumSecretTechnologiesInfo: "TODO", + FulcrumSecretTechnologiesInfo: "The human organism has an innate desire to worship. " + + "That is why they created gods. If there were no gods, " + + "it would be necessary to create them. And now we can.", //Hacker groups BitRunnersInfo: "Our entire lives are controlled by bits. All of our actions, our thoughts, our personal information. "+ diff --git a/src/FactionInfo.js b/src/FactionInfo.js index 8110fd7fc..17454ee9b 100644 --- a/src/FactionInfo.js +++ b/src/FactionInfo.js @@ -26,7 +26,12 @@ let FactionInfo = { BladeIndustriesInfo: "Augmentation is salvation", - NWOInfo: "The human being created civilization not because of willingness but of a need to be assimilated into higher orders of structure and meaning.", + NWOInfo: "The human being does not truly desire freedom. It wants " + + "to be observed, understood, and judged. It wants to be given purpose and " + + "direction in its life. That is why humans created God. " + + "And that is why humans created civilization - " + + "not because of willingness, " + + "but because of a need to be incorporated into higher orders of structure and meaning.", ClarkeIncorporatedInfo: "Unlocking the power of the genome", @@ -38,7 +43,9 @@ let FactionInfo = { KuaiGongInternationalInfo: "Dream big. Work hard. Make history.", //Other Corporations - FulcrumSecretTechnologiesInfo: "TODO", + FulcrumSecretTechnologiesInfo: "The human organism has an innate desire to worship. " + + "That is why they created gods. If there were no gods, " + + "it would be necessary to create them. And now we can.", //Hacker groups BitRunnersInfo: "Our entire lives are controlled by bits. All of our actions, our thoughts, our personal information. "+ diff --git a/utils/HelperFunctions.js b/utils/HelperFunctions.js index 819d03ac5..3a707700c 100644 --- a/utils/HelperFunctions.js +++ b/utils/HelperFunctions.js @@ -15,7 +15,7 @@ function sizeOfObject(obj) { //e.g. addOffset(100, 5) will return anything from 95 to 105. //The percentage argument must be between 0 and 100; function addOffset(n, percentage) { - if (percentage < 0 || percentage > 100) {return;} + if (percentage < 0 || percentage > 100) {return n;} var offset = n * (percentage / 100);