From b7c66c7fc9025eb4d3e54d90d617708c009e2d1f Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 25 Oct 2020 13:49:38 -0400 Subject: [PATCH] fix missing name --- src/js/birth/birth.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/birth/birth.js b/src/js/birth/birth.js index a2e8a84b669..08cc12bb238 100644 --- a/src/js/birth/birth.js +++ b/src/js/birth/birth.js @@ -1844,7 +1844,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) if (slave.fetish === "mindbroken" || slave.fuckdoll > 0) { r.push(`${slave.slaveName} does not give any hint of a response.`); } else if (slave.devotion > 95) { - r.push(`will`); + r.push(`${slave.slaveName} will`); r.push(App.UI.DOM.makeElement("span", `worship you utterly`, "hotpink")); r.push(`for this.`); slave.devotion += 6; @@ -1904,7 +1904,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) if (slave.fetish === "mindbroken" || slave.fuckdoll > 0) { r.push(`${slave.slaveName} does not give any hint of a response.`); } else if (slave.devotion > 95) { - r.push(`will`); + r.push(`${slave.slaveName} will`); r.push(App.UI.DOM.makeElement("span", `worship you utterly`, "hotpink")); r.push(`for this.`); slave.devotion += 6; -- GitLab