diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js index 0d22fd7261227b5a00232d782cefe5d0f578c0a6..a76995ea1641e3a702773a63ddbdcca52440a93a 100644 --- a/src/interaction/slaveInteract.js +++ b/src/interaction/slaveInteract.js @@ -2759,7 +2759,7 @@ App.UI.SlaveInteract.custom = (function() { el.append(`Change ${his} custom description: `); el.appendChild(App.UI.DOM.makeTextBox( - slave.custom.desc, + pronounsForSlaveProp(slave, slave.custom.desc), v => { slave.custom.desc = v; App.UI.SlaveInteract.custom(slave); diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 84df3441bddbab8ea6867bcd0331bf8ec62c150a..fef3aafa62a987340180c691e48864cc096582ca 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -12392,6 +12392,7 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) { } function marksAndMods() { + const r = []; if (slave.fuckdoll === 0) { if (setup.fakeBellies.includes(slave.bellyAccessory)) { switch (slave.bellyAccessory) { diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js index 1df0cb307f5c2d93b2472534bf43aba678bbabd4..d011fd180665eb9706f908d7bcf211302705b0da 100644 --- a/src/npc/descriptions/longSlave.js +++ b/src/npc/descriptions/longSlave.js @@ -268,7 +268,7 @@ App.Desc.longSlave = function(slave = V.activeSlave, {market = 0, eventDescripti r.push(App.Desc.skills(slave)); if (slave.custom.desc !== "" && slave.custom.desc) { - r.push(slave.custom.desc); + r.push(pronounsForSlaveProp(slave, slave.custom.desc)); } if (V.arcologies[0].FSGenderFundamentalistLawBeauty + V.arcologies[0].FSGenderRadicalistLawBeauty > 0) {