diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 19b70c512254278d490240179b948ce8d308ae2b..6ef8664b6d53937c762070fbdd7711753227a98a 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -1,5 +1,9 @@ App.Desc.belly = function(slave) { let heavyBelly; + const r = []; + const { + he, him, his, hers, himself, boy, He, His + } = getPronouns(slave); if (slave.belly >= 30000) { if (slave.belly >= 400000 + (slave.muscles * 2000) && slave.physicalAge >= 18) { heavyBelly = 1; @@ -12606,4 +12610,5 @@ App.Desc.belly = function(slave) { r.push(`are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`); } } + return r.join(" "); };