From 06a56b9999d89a0a53e210b32b66e60116087dfe Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sat, 5 Dec 2020 12:45:50 -0500
Subject: [PATCH] embedded variables

---
 src/facilities/fsDecoration.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/facilities/fsDecoration.js b/src/facilities/fsDecoration.js
index 0119afff00d..71ad2af5930 100644
--- a/src/facilities/fsDecoration.js
+++ b/src/facilities/fsDecoration.js
@@ -101,7 +101,7 @@ App.UI.FSChangeDecoration = function(FS, items) {
 			}
 			break;
 		case 80:
-			el.append(`${V.arcologies[0].name}'s media is supporting this goal; V.arcologies[0].name's public spaces are decorated to support it, and have slaves stationed in them to support it too. `);
+			el.append(`${V.arcologies[0].name}'s media is supporting this goal; ${V.arcologies[0].name}'s public spaces are decorated to support it, and have slaves stationed in them to support it too. `);
 			if (V.arcologies[0][FS] >= 70) {
 				if (FS === "FSRestart") {
 					costs = 75000;
@@ -144,7 +144,7 @@ App.UI.FSChangeDecoration = function(FS, items) {
 			}
 			break;
 		case 100:
-			el.append(`${V.arcologies[0].name}'s media is supporting this goal; V.arcologies[0].name's public spaces are decorated to support it, and have slaves stationed in them to support it. The exterior of the arcology has been remodeled to support it as well; the arcology is fully customized for this goal. `);
+			el.append(`${V.arcologies[0].name}'s media is supporting this goal; ${V.arcologies[0].name}'s public spaces are decorated to support it, and have slaves stationed in them to support it. The exterior of the arcology has been remodeled to support it as well; the arcology is fully customized for this goal. `);
 	}
 	return el;
 };
-- 
GitLab