From 17a5fb6bee5de92ae94b88c97a8acb2e412ca167 Mon Sep 17 00:00:00 2001 From: Anu <barrychahal@gmail.com> Date: Sat, 26 Jun 2021 08:33:04 +0000 Subject: [PATCH] Reimplement DOM link --- src/events/RETS/reBoobCollision.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/events/RETS/reBoobCollision.js b/src/events/RETS/reBoobCollision.js index f395c868345..48dfe85d07b 100644 --- a/src/events/RETS/reBoobCollision.js +++ b/src/events/RETS/reBoobCollision.js @@ -49,7 +49,9 @@ App.Events.RETSBoobCollision = class RETSBoobCollision extends App.Events.BaseEv t.push(`You pass by the slave quarters during a busy time. Slaves are hurrying back and forth, rushing to bathe, eat, and get dressed.`); - t.push(`In a particular hurry is ${contextualIntro(V.PC, eventSlave)}, ${his}`); + t.push(`In a particular hurry is`); + t.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), ",")); + t.push(`${his}`); if (eventSlave.belly >= 10000) { if (eventSlave.bellyPreg >= 8000) { t.push(`heavy pregnancy`); -- GitLab