From bfac055a464d7b1820758af71246f825beb0516f Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sat, 26 Jun 2021 00:01:28 -0400
Subject: [PATCH] fixes

---
 .../nonRandom/daughters/pUndergroundRailroad.js      | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/events/nonRandom/daughters/pUndergroundRailroad.js b/src/events/nonRandom/daughters/pUndergroundRailroad.js
index 9ca0afb472a..b75ce8ab660 100644
--- a/src/events/nonRandom/daughters/pUndergroundRailroad.js
+++ b/src/events/nonRandom/daughters/pUndergroundRailroad.js
@@ -331,7 +331,7 @@ App.Events.PUndergroundRailroad = class PUndergroundRailroad extends App.Events.
 			const frag = new DocumentFragment();
 			let r = [];
 			unlock();
-			r.push(`${traitor.slaveName} nods ${his} head in acceptance. There is too much at stake to take such a risk. All attempts to use your monitoring systems to find the citizens who contacted ${him} fail; it seems their ability to corrupt your systems is considerable. ${He} keeps ${his} lips shut tight in an effort to prevent rumors from spreading, but <span class="mediumorchid">whispers of freedom</span> still manage to run through your chattel.`);
+			r.push(`${traitor.slaveName} nods ${his} head in acceptance. There is too much at stake to take such a risk. All attempts to use your monitoring systems to find the citizens who contacted ${him} fail; it seems their ability to corrupt your systems is considerable. ${He} keeps ${his} lips shut tight in an effort to prevent rumors from spreading, but <span class="devotion dec">whispers of freedom</span> still manage to run through your chattel.`);
 			V.slaves.forEach(function(s) { s.devotion -= 5; });
 			App.Events.addParagraph(frag, r);
 			return frag;
@@ -358,11 +358,11 @@ App.Events.PUndergroundRailroad = class PUndergroundRailroad extends App.Events.
 			let r = [];
 			unlock();
 			if (V.traitorType !== "defiant") {
-				r.push(`${traitor.slaveName} almost <span class="mediumorchid">faints with relief</span> when it becomes apparent you aren't going to punish ${him} for speaking of freedom.`);
+				r.push(`${traitor.slaveName} almost <span class="devotion dec">faints with relief</span> when it becomes apparent you aren't going to punish ${him} for speaking of freedom.`);
 			} else {
-				r.push(`${traitor.slaveName} merely <span class="mediumorchid">smirks</span> when it becomes apparent you aren't going to punish ${him} for ${his} transgressions.`);
+				r.push(`${traitor.slaveName} merely <span class="devotion dec">smirks</span> when it becomes apparent you aren't going to punish ${him} for ${his} transgressions.`);
 			}
-			r.push(`All attempts to use your monitoring systems to find the citizens who contacted ${him} fail; it seems their ability to corrupt your systems is considerable. <span class="mediumorchid">Whispers of freedom</span> run like wildfire amongst your slaves.`);
+			r.push(`All attempts to use your monitoring systems to find the citizens who contacted ${him} fail; it seems their ability to corrupt your systems is considerable. <span class="devotion dec">Whispers of freedom</span> run like wildfire amongst your slaves.`);
 			V.slaves.forEach(function(s) { s.devotion -= 10; });
 			traitor.devotion -= 15;
 			App.Events.addParagraph(frag, r);
@@ -373,7 +373,7 @@ App.Events.PUndergroundRailroad = class PUndergroundRailroad extends App.Events.
 			const frag = new DocumentFragment();
 			let r = [];
 			unlock();
-			r.push(`You announce that a treasonous slave will be publicly flogged. Treason is understood in the Free Cities to be activity that tends to undermine slavery, and public interest is considerable when ${traitor.slaveName} is dragged out into a public atrium and secured to a post. You do your duty; the one that passes the sentence should swing the lash. The ordeal is long and bloody. The populace understand the necessity of the punishment, though they are <span class="red">disturbed</span> that such a thing could happen in your penthouse of all places. The effect on slave.slaveName's health <span class="health.dec">is serious,</span> and ${he} is <span class="gold">terrified of failing you again.</span>`);
+			r.push(`You announce that a treasonous slave will be publicly flogged. Treason is understood in the Free Cities to be activity that tends to undermine slavery, and public interest is considerable when ${traitor.slaveName} is dragged out into a public atrium and secured to a post. You do your duty; the one that passes the sentence should swing the lash. The ordeal is long and bloody. The populace understand the necessity of the punishment, though they are <span class="red">disturbed</span> that such a thing could happen in your penthouse of all places. The effect on ${traitor.slaveName}'s health <span class="health.dec">is serious,</span> and ${he} is <span class="trust dec">terrified of failing you again.</span>`);
 			traitor.trust -= 15;
 			repX(-500, "event", traitor);
 			healthDamage(traitor, 30);
@@ -411,7 +411,7 @@ App.Events.PUndergroundRailroad = class PUndergroundRailroad extends App.Events.
 			} else {
 				r.push(`is summarily hanged.`);
 			}
-			r.push(`The populace understands the necessity of the punishment, though they are <span class="red">disturbed</span> that such a thing could happen in your penthouse of all places. The surviving slaves are <span class="gold">terrified</span> at the display, but at least you can be sure they will remember the price of failing you.`);
+			r.push(`The populace understands the necessity of the punishment, though they are <span class="red">disturbed</span> that such a thing could happen in your penthouse of all places. The surviving slaves are <span class="trust dec">terrified</span> at the display, but at least you can be sure they will remember the price of failing you.`);
 			repX(-500, "event", traitor);
 			V.slaves.forEach(function(s) {
 				s.trust -= 10 + random(10);
-- 
GitLab