diff --git a/src/events/RE/reCitizenHookup.js b/src/events/RE/reCitizenHookup.js index e98214b5602e45b3d845660479ef4adb4e2ad88b..5fa54084b49e1159ab61c2e8f3f51c612a54003c 100644 --- a/src/events/RE/reCitizenHookup.js +++ b/src/events/RE/reCitizenHookup.js @@ -425,11 +425,9 @@ App.Events.RECitizenHookup = class RECitizenHookup extends App.Events.BaseEvent r.push(`When your guest is finally spent, she showers, dresses, and leaves discreetly, offering you a proper thank you. This is the kind of thing that <span class="green">builds a lasting reputation</span> in the Free Cities.`); repX(5000, "event"); if (fsAdj === "Repopulationist" && V.PC.dick !== 0 && repopHookupPregnant === 0 && (random(1, 100) > 40)) { - const desc = "a tasteful morning-after message, with attached positive pregnancy test, from a pretty " + fsAdj + " citizen you bred"; - V.trinkets.push(desc); + V.trinkets.push(`a tasteful morning-after message, with attached positive pregnancy test, from a pretty ${fsAdj} citizen you bred`); } else if (fsAdj !== "none") { - const desc = "a tasteful morning-after message from a pretty " + fsAdj + " citizen"; - V.trinkets.push(desc); + V.trinkets.push(`a tasteful morning-after message from a pretty ${fsAdj} citizen`); } else { V.trinkets.push("a tasteful morning-after message from a pretty citizen"); }