From 76d897431d3176ff5930973093527b30d359a619 Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Sat, 5 Sep 2020 00:35:10 -0400 Subject: [PATCH] Bugfix --- src/npc/interaction/fAnimal.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/npc/interaction/fAnimal.js b/src/npc/interaction/fAnimal.js index 5cee5ee4fb1..f27686b0547 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"; -- GitLab