From 953902712584d16b50be128efca9cd889d5aef6b Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Fri, 22 Mar 2019 19:09:13 -0400
Subject: [PATCH] Added spaces to SkillIncrease()

---
 src/js/utilJS.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/js/utilJS.js b/src/js/utilJS.js
index d53167d8df2..ec7335fd461 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;
-- 
GitLab