diff --git a/src/facilities/penthouse/penthousePassage.js b/src/facilities/penthouse/penthousePassage.js
index 851021b500132fbbec6c52d4ff81412770722d3f..e96b99d666cf49561952bd2e4815755831ba1139 100644
--- a/src/facilities/penthouse/penthousePassage.js
+++ b/src/facilities/penthouse/penthousePassage.js
@@ -100,86 +100,70 @@ App.UI.managePenthouse = function() {
 	function major() {
 		const el = new DocumentFragment();
 		App.UI.DOM.appendNewElement("h2", el, "Major Penthouse Facilities");
-		let r = [];
 
 		if (V.masterSuite === 0) {
-			r.push(makeLink("Improve your master bedroom to house a harem of personal toys", () => { V.masterSuite = 1; }));
+			App.UI.DOM.appendNewElement("div", el, makeLink("Improve your master bedroom to house a harem of personal toys", () => { V.masterSuite = 1; }));
 		} else {
-			r.push(`Your penthouse is capped by a master suite with room for an entire harem of personal toys.`);
+			App.UI.DOM.appendNewElement("div", el, `Your penthouse is capped by a master suite with room for an entire harem of personal toys.`);
 		}
-		App.Events.addNode(el, r, "div");
 
-		r = [];
 		if (V.servantsQuarters === 0) {
-			r.push(makeLink("Build a dormitory to house large numbers of house servants", () => { V.servantsQuarters = 5; }));
+			App.UI.DOM.appendNewElement("div", el, makeLink("Build a dormitory to house large numbers of house servants", () => { V.servantsQuarters = 5; }));
 		} else {
-			r.push(`Your penthouse includes a dormitory to house large numbers of house servants.`);
+			App.UI.DOM.appendNewElement("div", el, `Your penthouse includes a dormitory to house large numbers of house servants.`);
 		}
-		App.Events.addNode(el, r, "div");
 
-		r = [];
 		if (V.schoolroom === 0) {
-			r.push(makeLink("Build a schoolroom where slaves can be educated", () => { V.schoolroom = 5; }));
+			App.UI.DOM.appendNewElement("div", el, makeLink("Build a schoolroom where slaves can be educated", () => { V.schoolroom = 5; }));
 		} else {
-			r.push(`Your penthouse includes a schoolroom where slaves can be educated.`);
+			App.UI.DOM.appendNewElement("div", el, `Your penthouse includes a schoolroom where slaves can be educated.`);
 		}
-		App.Events.addNode(el, r, "div");
 
-		r = [];
 		if (V.spa === 0) {
-			r.push(makeLink("Install open baths to provide relaxation space for resting slaves", () => { V.spa = 5; }));
+			App.UI.DOM.appendNewElement("div", el, makeLink("Install open baths to provide relaxation space for resting slaves", () => { V.spa = 5; }));
 		} else {
-			r.push(`The penthouse includes a fully appointed spa where slaves can rest and recuperate.`);
+			App.UI.DOM.appendNewElement("div", el, `The penthouse includes a fully appointed spa where slaves can rest and recuperate.`);
 		}
-		App.Events.addNode(el, r, "div");
 
-		r = [];
 		if (V.seePreg !== 0) {
 			if (V.experimental.nursery === 1) {
 				if (V.nursery === 0) {
-					r.push(makeLink("Build a nursery to raise children from birth", () => {
+					App.UI.DOM.appendNewElement("div", el, makeLink("Build a nursery to raise children from birth", () => {
 						V.nursery = 5;
 						V.nurseryNannies = 1;
 					}));
 				} else {
-					r.push(`The penthouse has a nursery built where infants can be brought up.`);
+					App.UI.DOM.appendNewElement("div", el, `The penthouse has a nursery built where infants can be brought up.`);
 				}
 			}
 		}
-		App.Events.addNode(el, r, "div");
 
-		r = [];
 		if (V.clinic === 0) {
-			r.push(makeLink("Expand the surgical recovery area to accommodate patients and a nurse", () => { V.clinic = 5; }));
+			App.UI.DOM.appendNewElement("div", el, makeLink("Expand the surgical recovery area to accommodate patients and a nurse", () => { V.clinic = 5; }));
 		} else {
-			r.push(`The surgical recovery area has been expanded to take in more unhealthy slaves and be staffed by a nurse.`);
+			App.UI.DOM.appendNewElement("div", el, `The surgical recovery area has been expanded to take in more unhealthy slaves and be staffed by a nurse.`);
 		}
-		App.Events.addNode(el, r, "div");
 
-		r = [];
 		if (V.cellblock === 0) {
-			r.push(makeLink("Construct cells to properly confine disobedient slaves", () => { V.cellblock = 5; }));
+			App.UI.DOM.appendNewElement("div", el, makeLink("Construct cells to properly confine disobedient slaves", () => { V.cellblock = 5; }));
 		} else {
-			r.push(`The lower level of the penthouse includes a hallway of cells to confine slaves in.`);
+			App.UI.DOM.appendNewElement("div", el, `The lower level of the penthouse includes a hallway of cells to confine slaves in.`);
 		}
-		App.Events.addNode(el, r, "div");
 
-		r = [];
 		if (V.seePreg !== 0) {
 			if (V.arcologyUpgrade.grid === 1) {
 				if (V.incubator === 0) {
-					r.push(makeLink("Install an incubation chamber to rapidly age children", () => {
+					App.UI.DOM.appendNewElement("div", el, makeLink("Install an incubation chamber to rapidly age children", () => {
 						V.incubator = 5;
 						V.readySlaves = 0;
 					}));
 				} else {
-					r.push(`The penthouse has a specialized facility dedicated to rapidly aging children.`);
+					App.UI.DOM.appendNewElement("div", el, `The penthouse has a specialized facility dedicated to rapidly aging children.`);
 				}
 			} else if (V.arcologyUpgrade.hydro === 1 || V.arcologyUpgrade.apron === 1) {
-				r.push(App.UI.DOM.makeElement("span", "Installation of a child aging facility will require the arcology's electrical infrastructure to be overhauled.", "note"));
+				App.UI.DOM.appendNewElement("div", el, App.UI.DOM.makeElement("span", "Installation of a child aging facility will require the arcology's electrical infrastructure to be overhauled.", "note"));
 			}
 		}
-		App.Events.addNode(el, r, "div");
 
 		return el;
 	}