From ee13e8a4864cc802c40a78df242315b418338013 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 3 Jan 2021 20:26:00 -0500
Subject: [PATCH] move passage

---
 src/005-passages/facilitiesPassages.js | 9 ---------
 src/005-passages/managePassages.js     | 9 +++++++++
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/005-passages/facilitiesPassages.js b/src/005-passages/facilitiesPassages.js
index 095beed8ac1..8aab5295314 100644
--- a/src/005-passages/facilitiesPassages.js
+++ b/src/005-passages/facilitiesPassages.js
@@ -77,12 +77,3 @@ new App.DomPassage("Toy Shop",
 		return App.UI.toyShop();
 	}, ["jump-to-safe", "jump-from-safe"]
 );
-
-new App.DomPassage("Manage Penthouse",
-	() => {
-		V.nextButton = "Back";
-		V.nextLink = "Manage Penthouse";
-		V.encyclopedia = "What the Upgrades Do";
-		return App.UI.managePenthouse();
-	}, ["jump-to-safe", "jump-from-safe"]
-);
diff --git a/src/005-passages/managePassages.js b/src/005-passages/managePassages.js
index e05ee918eb5..5591493ec44 100644
--- a/src/005-passages/managePassages.js
+++ b/src/005-passages/managePassages.js
@@ -9,3 +9,12 @@ new App.DomPassage("Main",
 );
 
 new App.DomPassage("Future Society", () => { return App.UI.fsPassage(); }, ["jump-to-safe", "jump-from-safe"]);
+
+new App.DomPassage("Manage Penthouse",
+	() => {
+		V.nextButton = "Back";
+		V.nextLink = "Manage Penthouse";
+		V.encyclopedia = "What the Upgrades Do";
+		return App.UI.managePenthouse();
+	}, ["jump-to-safe", "jump-from-safe"]
+);
-- 
GitLab