From 00b1fb390231584b2fba1f65861dd642b1197f70 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 18 Jan 2021 08:14:46 -0500
Subject: [PATCH] penthouse passage fixes

---
 src/facilities/penthouse/penthousePassage.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/facilities/penthouse/penthousePassage.js b/src/facilities/penthouse/penthousePassage.js
index 93661633bf7..fae3656feae 100644
--- a/src/facilities/penthouse/penthousePassage.js
+++ b/src/facilities/penthouse/penthousePassage.js
@@ -481,7 +481,7 @@ App.UI.managePenthouse = function() {
 		if (V.seePee === 1) {
 			r = [];
 			if (V.wcPiping === 0) {
-				r.push(makeLink("Install pipes connecting the slave bathrooms to the rest of your penthouse for use in watersports", () => { V.wcPiping = 1; }), 10000);
+				r.push(makeLink("Install pipes connecting the slave bathrooms to the rest of your penthouse for use in watersports", () => { V.wcPiping = 1; }, 10000));
 			} else {
 				r.push(`The plumbing underneath the slave bathrooms connects to various taps throughout the penthouse that can dispense its contents when needed.`);
 			}
@@ -490,11 +490,11 @@ App.UI.managePenthouse = function() {
 
 		r = [];
 		if (V.studio === 0) {
-			r.push(makeLink("Install a media hub to convert slave video feeds into pornography", () => { V.studio = 1; }), 10000);
+			r.push(makeLink("Install a media hub to convert slave video feeds into pornography", () => { V.studio = 1; }, 10000));
 		} else {
 			r.push(`The arcology's video systems are connected to a media hub that can convert slave video feeds into pornography.`);
 			if (V.studioFeed === 0) {
-				r.push(makeLink("Upgrade the media hub to allow better control of pornographic content|Manage Penthouse", () => { V.studioFeed = 1; }), 15000);
+				r.push(makeLink("Upgrade the media hub to allow better control of pornographic content", () => { V.studioFeed = 1; }, 15000));
 			} else {
 				r.push(`It has been upgraded to allow superior control of a slave's pornographic content.`);
 			}
-- 
GitLab