diff --git a/src/endWeek/saRelationships.js b/src/endWeek/saRelationships.js index 4f0315832cd22f023374c6402637c61fdb0a0634..f2e07b255db58ae375199d959ad4af493773ffea 100644 --- a/src/endWeek/saRelationships.js +++ b/src/endWeek/saRelationships.js @@ -777,7 +777,7 @@ App.SlaveAssignment.relationships = (function() { slave.relationship++; friend.relationship = slave.relationship; } else if (V.seeIncest === 1 && slave.sexualQuirk === "perverted" && areRelated(slave, friend) && random(1, 100) > (80 - seed)) { - r.push(`Reveling in the taboo nature of ${his} attraction to ${friend.slaveName}, slave.slaveName successfully seduces ${his} ${relativeTerm(slave, friend)}, making them <span class="relationship">friends with benefits.</span>`); + r.push(`Reveling in the taboo nature of ${his} attraction to ${friend.slaveName}, ${slave.slaveName} successfully seduces ${his} ${relativeTerm(slave, friend)}, making them <span class="relationship">friends with benefits.</span>`); slave.relationship++; friend.relationship = slave.relationship; } else if (V.seeIncest === 1 && slave.behavioralQuirk === "sinful" && areRelated(slave, friend) && random(1, 100) > (80 - seed)) { @@ -1029,7 +1029,7 @@ App.SlaveAssignment.relationships = (function() { repX((2 * V.FSSingleSlaveRep * (V.arcologies[0].FSEgyptianRevivalist / V.FSLockinLevel)), "SlaveRelationships", slave); V.arcologies[0].FSEgyptianRevivalist += (0.1 * V.FSSingleSlaveRep); if (slave.bellyPreg >= 1500 && slave.pregSource === lover.ID) { - r.push(`<span class="reputation inc">The effect is greatly enhanced</span> by slave.slaveName's pureblooded pregnancy.`); + r.push(`<span class="reputation inc">The effect is greatly enhanced</span> by ${slave.slaveName}'s pureblooded pregnancy.`); repX((V.FSSingleSlaveRep * (V.arcologies[0].FSEgyptianRevivalist / V.FSLockinLevel)), "SlaveRelationships", slave); V.arcologies[0].FSEgyptianRevivalist += (0.05 * V.FSSingleSlaveRep * V.pornFameBonus); } @@ -1037,7 +1037,7 @@ App.SlaveAssignment.relationships = (function() { r.push(`Society <span class="reputation inc">enjoys</span> their incestuous relationship since incest is currently trendy.`); repX((1.5 * V.FSSingleSlaveRep), "PCRelationships", slave); if (slave.bellyPreg >= 1500 && slave.pregSource === lover.ID) { - r.push(`<span class="reputation inc">The effect is enhanced</span> by slave.slaveName's pureblooded pregnancy.`); + r.push(`<span class="reputation inc">The effect is enhanced</span> by ${slave.slaveName}'s pureblooded pregnancy.`); repX(V.FSSingleSlaveRep, "SlaveRelationships", slave); } } @@ -1093,13 +1093,13 @@ App.SlaveAssignment.relationships = (function() { } if (slave.attrXX <= 95 && random(1, 100) < (slave.relationship * 5) && (lover.vagina > -1 || lover.faceShape !== "masculine")) { if (slave.attrKnown === 1) { // just becuase you don't know about it doesn't mean it's not happening. - r.push(`After finding comfort with a feminine lover, slave.slaveName begins to experience more attraction to women.`); + r.push(`After finding comfort with a feminine lover, ${slave.slaveName} begins to experience more attraction to women.`); } slave.attrXX += 2; } if (slave.attrXY <= 95 && random(1, 100) < (slave.relationship * 5) && canAchieveErection(lover)) { if (slave.attrKnown === 1) { - r.push(`After growing close to a lover with a dick, slave.slaveName begins to experience more attraction to men.`); + r.push(`After growing close to a lover with a dick, ${slave.slaveName} begins to experience more attraction to men.`); } slave.attrXY += 2; }