From ebb6106617d4bc0e400e1c0083a560bafe242d63 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Fri, 6 Nov 2020 19:48:41 -0500
Subject: [PATCH] fixes for formatting

---
 src/endWeek/reports/clubReport.js | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/src/endWeek/reports/clubReport.js b/src/endWeek/reports/clubReport.js
index 50f8882342e..de98b3b10aa 100644
--- a/src/endWeek/reports/clubReport.js
+++ b/src/endWeek/reports/clubReport.js
@@ -231,7 +231,7 @@ App.EndWeek.clubReport = function() {
 			}
 		}
 
-		App.UI.DOM.appendNewElement("p", el, App.Ads.report("club"));
+		App.Events.addNode(el, [App.Ads.report("club")], "p", "indented");
 
 		// Record statistics gathering
 		const b = State.variables.facility.club;
@@ -251,7 +251,14 @@ App.EndWeek.clubReport = function() {
 		b.totalExpenses = b.whoreCosts + b.adsCosts + b.maintenance;
 		b.profit = b.totalIncome / b.totalExpenses;
 		if (V.clubDecoration !== "standard") {
-			App.UI.DOM.appendNewElement("p", el, `${capFirstChar(V.clubName)}'s customers enjoy <span class="green">having sex in ${V.clubDecoration} surroundings.</span>`);
+			App.Events.addNode(
+				el,
+				[
+					`${capFirstChar(V.clubName)}'s customers enjoy <span class="green">having sex in ${V.clubDecoration} surroundings.</span>`
+				],
+				"p",
+				"indented"
+			);
 		}
 
 		// Club stats
-- 
GitLab