diff --git a/src/npc/interaction/fAnimal.js b/src/npc/interaction/fAnimal.js index 5cee5ee4fb190b089414ea862d4453cdcb032cda..f27686b0547822b59ffd50fd31610b2056a0ccf7 100644 --- a/src/npc/interaction/fAnimal.js +++ b/src/npc/interaction/fAnimal.js @@ -726,21 +726,21 @@ App.Interact.fAnimal = function(slave, type) { switch (act) { case oral: if (slave.energy < 95 && slave.sexualFlaw !== "hates oral") { - mainSpan.append(`Having ${a} ${animal} fuck ${his} throat by force has given ${him} a hatred of oral sex.`); + mainSpan.append(`Having ${a} ${animal.name} fuck ${his} throat by force has given ${him} a hatred of oral sex.`); } slave.sexualFlaw = "hates oral"; break; case vaginal: if (slave.energy < 95 && slave.sexualFlaw !== "hates penetration") { - mainSpan.append(`Having ${a} ${animal} fuck ${him} by force has given ${him} a hatred of penetration.`); + mainSpan.append(`Having ${a} ${animal.name} fuck ${him} by force has given ${him} a hatred of penetration.`); } slave.sexualFlaw = "hates penetration"; break; case anal: if (slave.energy < 95 && slave.sexualFlaw !== "hates anal") { - mainSpan.append(`Having ${a} ${animal} fuck ${his} asshole by force has given ${him} a hatred of anal penetration.`); + mainSpan.append(`Having ${a} ${animal.name} fuck ${his} asshole by force has given ${him} a hatred of anal penetration.`); } slave.sexualFlaw = "hates anal";