From fcefe5b290706561fff608f464218b96e09d0d7d Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Mon, 1 Jul 2019 16:37:08 -0400
Subject: [PATCH] fixes

---
 src/endWeek/saWhore.js         | 10 +++++-----
 src/uncategorized/spaReport.tw |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js
index b68143949e3..0c900b5dff3 100644
--- a/src/endWeek/saWhore.js
+++ b/src/endWeek/saWhore.js
@@ -621,12 +621,12 @@ window.saWhore = (function saWhore() {
 			}
 		}
 
-		if (slave.skill.whoring > 10 && slave.skill.whoring <= 30) {
-			r += ` As a skilled prostitute, ${he} gets a little more money out of customers.`;
-		} else if (slave.skill.whoring <= 60) {
-			r += ` As an expert prostitute, ${he} gets more money out of customers.`;
-		} else if (slave.skill.whoring >= 100) {
+		if (slave.skill.whoring >= 100) {
 			r += ` As a masterful prostitute, ${he} makes more money.`;
+		else if (slave.skill.whoring > 60) {
+			r += ` As an expert prostitute, ${he} gets more money out of customers.`;
+		} else if (slave.skill.whoring > 30) {
+			r += ` As a skilled prostitute, ${he} gets a little more money out of customers.`;
 		}
 		if (slave.amp !== 1) {
 			if (slave.skill.whoring < 100) {
diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw
index afee47b5987..a36aa075151 100644
--- a/src/uncategorized/spaReport.tw
+++ b/src/uncategorized/spaReport.tw
@@ -299,7 +299,7 @@
 		<<else>>
 			is resting in $spaName.
 		<</if>>
-		<br>&nbsp;&nbsp;&nbsp;&nbsp;_He2 <<= saRest($slaves[$i])>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<= saRest($slaves[$i])>>
 		<<if ($slaves[$i].fetish == "mindbroken")>>
 			$He remains in the Spa, completely mindbroken.
 		<<elseif($slaves[$i].sexualFlaw != "none") || ($slaves[$i].behavioralFlaw != "none")>>
-- 
GitLab