diff --git a/src/005-passages/interactPassages.js b/src/005-passages/interactPassages.js
index fc3682b6a7e4d5150daa4c7670f63af6084bb4bb..a9c049851d00428dfbfe53193e6c5185b9370f64 100644
--- a/src/005-passages/interactPassages.js
+++ b/src/005-passages/interactPassages.js
@@ -212,3 +212,19 @@ new App.DomPassage("FMarry",
 		return App.Interact.fMarry(getSlave(V.AS));
 	}
 );
+
+new App.DomPassage("Discard Confirm",
+	() => {
+		V.nextButton = "Back";
+		V.nextLink = "Slave Interact";
+		return App.Interact.discard(getSlave(V.AS));
+	}
+);
+
+new App.DomPassage("Sell Slave",
+	() => {
+		V.nextButton = "Back";
+		V.nextLink = "Slave Interact";
+		return App.Interact.sellSlave(getSlave(V.AS));
+	}
+);