diff --git a/src/005-passages/facilitiesPassages.js b/src/005-passages/facilitiesPassages.js
index 095beed8ac18cfb7f25bce4f2eeba2aa39f89cd5..8aab5295314af0b8075b85e4ef63e69701e276b8 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 e05ee918eb52a2180ce1368dbad4626d38f79458..5591493ec449406469094da681bff190e4c83464 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"]
+);