diff --git a/src/events/scheduled/murderAttempt.js b/src/events/scheduled/murderAttempt.js
index b5a2fef5c761d57d0d9b6dc07deb3546eb5b880d..5af3bc3b4821f045e6dbff1efd7d5eb8fc232167 100644
--- a/src/events/scheduled/murderAttempt.js
+++ b/src/events/scheduled/murderAttempt.js
@@ -15,7 +15,6 @@ App.Events.MurderAttempt = class MurderAttempt extends App.Events.BaseEvent {
 		V.murderAttemptWeek = V.week + 26 + Math.floor(Math.random() * 26);
 		// disable Continue
 		V.nextButton = " ";
-		const nextPassage = "Scheduled Event";
 		const perceptiveCareers = ["escort", "gang", "hoodlum", "mercenary", "prostitute", "street urchin"];
 		// event unique
 		const variation = jsEither(["trade", "slave", "drug", "military"]);
@@ -148,7 +147,7 @@ App.Events.MurderAttempt = class MurderAttempt extends App.Events.BaseEvent {
 				App.Events.addParagraph(fragment, r);
 
 				App.Events.addResponses(fragment, [
-					new App.Events.Result(`Order ${him} to leave for making such a request`, endEvent),
+					new App.Events.Result(`Order ${him} to leave for making such a request`, sentOutRoute),
 					new App.Events.Result(`${S.Bodyguard.slaveName} goes everywhere and does everything with you. ${HeBG} stays`, bgStaysRoute),
 					new App.Events.Result(`This better be worth it. Order ${S.Bodyguard.slaveName} to leave`, bgLeavesRoute)
 				]);
@@ -188,6 +187,14 @@ App.Events.MurderAttempt = class MurderAttempt extends App.Events.BaseEvent {
 			}
 		}
 
+		function sentOutRoute() {
+			const fragment = document.createDocumentFragment();
+			const r = [`Grumbling under ${his} breath ${he} quickly leaves.`]
+			App.Events.addParagraph(fragment, r);
+			continueButton(fragment);
+			return fragment;
+		}
+
 		function bgStaysRoute() {
 			const fragment = document.createDocumentFragment();
 
@@ -286,7 +293,7 @@ App.Events.MurderAttempt = class MurderAttempt extends App.Events.BaseEvent {
 			const options = [];
 			switch (variation) {
 				case "trade":
-					paragraphStart.push(`${companyName} is planning a trade deal with an old world corporation that wants to expand into the Free Cities, but with the added twist of effectively robbing them during this. Their problem is they need something to show them and your arcology would ideal for this. Your role would be simple, just follow a short script before leaving both sides to negotiate. If everything goes well, your share could be in the six digit realm, but if something goes wrong, your reputation would be severely damaged.`);
+					paragraphStart.push(`${companyName} is planning a trade deal with an old world corporation that wants to expand into the Free Cities, but with the added twist of effectively robbing them during this. Their problem is they need something to show them and your arcology would be ideal for this. Your role would be simple, just follow a short script before leaving both sides to negotiate. If everything goes well, your share could be in the six digit realm, but if something goes wrong, your reputation would be severely damaged.`);
 					options.push(
 						new App.Events.Result("A windfall like this doesn't come by every day. Of course you'll take this opportunity.", accept()),
 						new App.Events.Result("The potential winnings are not worth the risk. You will not be a part of their plans.", refused)
@@ -379,14 +386,13 @@ App.Events.MurderAttempt = class MurderAttempt extends App.Events.BaseEvent {
 		}
 
 		function endEvent() {
-			Engine.play(nextPassage);
+			Engine.play(V.nextLink);
 			return [];
 		}
 
 		function continueButton(fragment) {
-			fragment.append(App.UI.DOM.passageLink("Continue", nextPassage));
+			fragment.append(App.UI.DOM.passageLink("Continue", V.nextLink));
 			V.nextButton = "Continue";
-			V.nextLink = nextPassage;
 			App.Utils.scheduleSidebarRefresh();
 		}
 	}