diff --git a/src/uncategorized/brothelReport.js b/src/uncategorized/brothelReport.js index 108c12f6305e6449f7282967fbcbfb15e03383f2..c0a51abfe1bec9d88b54a15284caaa3421bf21b7 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; };