From 50f8397cda8eb9657997f413dfa49f88e481dcfc Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 24 Aug 2020 15:39:52 -0400 Subject: [PATCH] introduce slave life fix --- src/facilities/nursery/utils/nurseryUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/facilities/nursery/utils/nurseryUtils.js b/src/facilities/nursery/utils/nurseryUtils.js index 349b826e1e0..ad6acc9873a 100644 --- a/src/facilities/nursery/utils/nurseryUtils.js +++ b/src/facilities/nursery/utils/nurseryUtils.js @@ -51,7 +51,7 @@ App.Facilities.Nursery.childList = function childList() { list.appendChild(document.createElement("br")); r.push(`${He} is ready to leave ${V.nurseryName} and ${child.targetLocation === "slavery" ? `join your ménage` : `become a free citizen`}. `); - $(list).append(App.UI.DOM.passageLink(targetText, "Nursery Retrieval Workaround", V.readySlave = child)); + $(list).append(App.UI.DOM.passageLink(targetText, "Nursery Retrieval Workaround", () => { V.readySlave = child; })); } else { list.appendChild(document.createElement("br")); -- GitLab