diff --git a/src/js/utilJS.js b/src/js/utilJS.js index d53167d8df240b37572e00edc10c569ae28b8f2a..ec7335fd461b79ba3c3deee4608f8a70a072d961 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -1208,19 +1208,19 @@ window.SkillIncrease = (function() { if (slave.oralSkill <= 10) { if (slave.oralSkill + skillIncrease > 10) { - r = `<span class="green">${He} now has basic knowledge about oral sex,</span> and can at least suck a dick without constant gagging.`; + r = ` <span class="green">${He} now has basic knowledge about oral sex,</span> and can at least suck a dick without constant gagging.`; } } else if (slave.oralSkill <= 30) { if (slave.oralSkill + skillIncrease > 30) { - r = `<span class="green">${He} now has some oral skills,</span> and can reliably bring dicks and pussies to climax with ${his} mouth.`; + r = ` <span class="green">${He} now has some oral skills,</span> and can reliably bring dicks and pussies to climax with ${his} mouth.`; } } else if (slave.oralSkill <= 60) { if (slave.oralSkill + skillIncrease > 60) { - r = `<span class="green">${He} is now an oral expert,</span> and has a delightfully experienced tongue.`; + r = ` <span class="green">${He} is now an oral expert,</span> and has a delightfully experienced tongue.`; } } else if (slave.oralSkill < 100) { if (slave.oralSkill + skillIncrease >= 100) { - r = `<span class="green">${He} has mastered oral sex,</span> and can learn nothing more about sucking dick or eating pussy.`; + r = ` <span class="green">${He} has mastered oral sex,</span> and can learn nothing more about sucking dick or eating pussy.`; } } slave.oralSkill += skillIncrease;