Skip to content
Snippets Groups Projects
Commit 76d89743 authored by brickode's avatar brickode
Browse files

Bugfix

parent dfe14a1e
No related branches found
No related tags found
1 merge request!7465Farmyard animals DOMification
...@@ -726,21 +726,21 @@ App.Interact.fAnimal = function(slave, type) { ...@@ -726,21 +726,21 @@ App.Interact.fAnimal = function(slave, type) {
switch (act) { switch (act) {
case oral: case oral:
if (slave.energy < 95 && slave.sexualFlaw !== "hates 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"; slave.sexualFlaw = "hates oral";
break; break;
case vaginal: case vaginal:
if (slave.energy < 95 && slave.sexualFlaw !== "hates penetration") { 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"; slave.sexualFlaw = "hates penetration";
break; break;
case anal: case anal:
if (slave.energy < 95 && slave.sexualFlaw !== "hates 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"; slave.sexualFlaw = "hates anal";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment