From 9a1b28e5cb0dad0ac0135a3ee262dc1e9eed5231 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Wed, 28 Oct 2020 20:21:18 -0400
Subject: [PATCH] economic details

---
 src/uncategorized/brothelReport.js | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

diff --git a/src/uncategorized/brothelReport.js b/src/uncategorized/brothelReport.js
index 108c12f6305..c0a51abfe1b 100644
--- a/src/uncategorized/brothelReport.js
+++ b/src/uncategorized/brothelReport.js
@@ -5,7 +5,6 @@ globalThis.brothelReport = function() {
 	let r;
 
 	const brothelStats = document.createElement("span");
-	brothelStats.id = "brothel-stats";
 	el.append(brothelStats);
 
 	const slaves = App.Utils.sortedEmployees(App.Entity.facilities.brothel);
@@ -374,14 +373,10 @@ globalThis.brothelReport = function() {
 		if (V.brothelDecoration !== "standard") {
 			App.UI.DOM.appendNewElement("p", el, `${_brothelNameCaps}'s customers enjoyed <span class="reputation inc">fucking whores in ${V.brothelDecoration} surroundings.</span>`);
 		}
-		/*
-			<!-- Statistics output -->
-			<<includeDOM App.Facilities.Brothel.Stats(false)>>
-			<<timed 50ms>>
-				<<replace #brothel-stats>>
-					<<includeDOM App.Facilities.Brothel.Stats(true)>>
-				<</replace>>
-			<</timed>>*/
+
+		// Brothel stats
+		el.append(App.Facilities.Brothel.Stats(false));
+		brothelStats.append(App.Facilities.Brothel.Stats(true));
 	}
 	return el;
 };
-- 
GitLab