From 166d92ba3b6f26fa2122a4c5d7b95f85eb9a8f6a Mon Sep 17 00:00:00 2001
From: DCoded <dicoded@email.com>
Date: Sat, 3 Jul 2021 21:04:41 -0400
Subject: [PATCH] Removed spans from note

---
 src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js  | 4 ++--
 src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js | 4 ++--
 src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js b/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js
index 912154eb8c7..ab37feced51 100644
--- a/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js
+++ b/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js
@@ -29,8 +29,8 @@ App.Events.pFoodCrisisLowerClass = class PFoodCrisis extends App.Events.BaseEven
 		r.push(`Supplies steadily began to dwindle, and it wasn't long before the prices of food began to rise as a result. ${V.arcologyUpgrade.hydro ? `Even the hydroponics system you had installed earlier could barely put a dent in the needs of your citizens.` : ``} Now, the poorest in your arcology are facing starvation. Seeing no other choice, they turned to you to provide them with sustenance. <span class="bold">This is a unique opportunity.</span> It's unlikely your citizens would ask for your help again, should you choose not to help them.`);
 
 		App.Events.addResponses(node, [
-			new App.Events.Result(`Provide them with ample rations`, ample, `This will cost ${cashFormat(price * 2.5)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`),
-			new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price * 1.5)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`),
+			new App.Events.Result(`Provide them with ample rations`, ample, `This will cost ${cashFormat(price * 2.5)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`),
+			new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price * 1.5)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`),
 			new App.Events.Result(`They can figure their problem out on their own`, refuse)
 		]);
 
diff --git a/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js b/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js
index f4ade4e633b..ea38c57ddd1 100644
--- a/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js
+++ b/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js
@@ -24,8 +24,8 @@ App.Events.pFoodCrisisMiddleClass = class PFoodCrisis extends App.Events.BaseEve
 		App.Events.addParagraph(node, r);
 
 		App.Events.addResponses(node, [
-			new App.Events.Result(`Give them generous rations as well`, ample, `This will cost ${cashFormat(price * 2)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`),
-			new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`),
+			new App.Events.Result(`Give them generous rations as well`, ample, `This will cost ${cashFormat(price * 2)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`),
+			new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`),
 			new App.Events.Result(`Change your mind about giving out any rations at all`, refuse)
 		]);
 
diff --git a/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js b/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js
index 39049ac261b..64ef82e2379 100644
--- a/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js
+++ b/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js
@@ -29,8 +29,8 @@ App.Events.pFoodCrisisUpperClass = class PFoodCrisis extends App.Events.BaseEven
 		App.Events.addParagraph(node, r);
 
 		App.Events.addResponses(node, [
-			new App.Events.Result(`Set up a food market`, foodMarket, `This will cost an initial investment of ${cashFormat(price * 15)}${discount ? `, <span class="skill player">reduced by your knowledge of trading</span>` : ``}`),
-			new App.Events.Result(`Politely decline their offer, but continue giving them rations`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`),
+			new App.Events.Result(`Set up a food market`, foodMarket, `This will cost an initial investment of ${cashFormat(price * 15)}${discount ? `, reduced by your knowledge of trading` : ``}.`),
+			new App.Events.Result(`Politely decline their offer, but continue giving them rations`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`),
 			new App.Events.Result(`Turn down their offer and end rationing completely`, refuse),
 		]);
 
-- 
GitLab