From 05c6ceb080f8e5feecffea69d4e0b5ae07fd4544 Mon Sep 17 00:00:00 2001 From: Anu <anulithic@gmail.com> Date: Tue, 15 Aug 2023 18:32:29 -0700 Subject: [PATCH] Fix "while Jane Doe - no, Jane Doe - is not sure" --- src/events/RESS/review/notMyName.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/RESS/review/notMyName.js b/src/events/RESS/review/notMyName.js index 7751ce65adc..3ff0b13552a 100644 --- a/src/events/RESS/review/notMyName.js +++ b/src/events/RESS/review/notMyName.js @@ -98,10 +98,10 @@ App.Events.RESSNotMyName = class RESSNotMyName extends App.Events.BaseEvent { } function allow() { + return `You calmly and charitably tell ${him} that that's acceptable; ${he} can be ${eventSlave.birthName} again. ${He} has the wit to be worried, but ${he} soon finds that ${his} fears are unjustified. You offer no condition or "catch" with this bit of generosity; it seems all ${he} really had to do was ask. You usher the stunned ${SlaveTitle(eventSlave)} out of your office and on to ${his} duties before ${he} can even offer a perfunctory "thanks". Over the next week, it's clear that while ${eventSlave.slaveName} — no, ${eventSlave.birthName} — is <span class="devotion dec">not sure what to think of you now,</span> it's clear that ${he} is at least <span class="trust inc">less afraid of you.</span>`; eventSlave.trust += 15; eventSlave.devotion -= 5; eventSlave.slaveName = eventSlave.birthName; - return `You calmly and charitably tell ${him} that that's acceptable; ${he} can be ${eventSlave.birthName} again. ${He} has the wit to be worried, but ${he} soon finds that ${his} fears are unjustified. You offer no condition or "catch" with this bit of generosity; it seems all ${he} really had to do was ask. You usher the stunned ${SlaveTitle(eventSlave)} out of your office and on to ${his} duties before ${he} can even offer a perfunctory "thanks". Over the next week, it's clear that while ${eventSlave.slaveName} — no, ${eventSlave.birthName} — is <span class="devotion dec">not sure what to think of you now,</span> it's clear that ${he} is at least <span class="trust inc">less afraid of you.</span>`; } -- GitLab