From 750d0d00f6e4e208d8b413fa021350ef4df30d20 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 17 Feb 2021 05:11:55 -0500
Subject: [PATCH] fixes

---
 src/events/RESS/comfortableSeat.js | 2 +-
 src/facilities/spa/spaFramework.js | 6 +++++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/events/RESS/comfortableSeat.js b/src/events/RESS/comfortableSeat.js
index 79d6a2ca9a2..595938dbdda 100644
--- a/src/events/RESS/comfortableSeat.js
+++ b/src/events/RESS/comfortableSeat.js
@@ -101,7 +101,7 @@ App.Events.RESSComfortableSeat = class RESSComfortableSeat extends App.Events.Ba
 		} else {
 			t.push(`${He} has a shapely womanhood, with trim labia and a demure clit, but it's a little flushed.`);
 		}
-		t.push(`${eventSlave.vaginaLube > 0 ? `${His} wet cunt is already lubricating itself generously for you, slicking ${his} labia with female arousal.` : ""} The slutty ${desc} wants it badly.`);
+		t.push(`${(eventSlave.vaginaLube > 0 && eventSlave.vagina > -1) ? `${His} wet cunt is already lubricating itself generously for you, slicking ${his} labia with female arousal.` : ""} The slutty ${desc} wants it badly.`);
 
 		App.Events.addParagraph(node, t);
 		t = [];
diff --git a/src/facilities/spa/spaFramework.js b/src/facilities/spa/spaFramework.js
index ed4e8fc5215..02d9f7f0e8f 100644
--- a/src/facilities/spa/spaFramework.js
+++ b/src/facilities/spa/spaFramework.js
@@ -49,7 +49,11 @@ App.Entity.Facilities.SpaAssigneeJob = class extends App.Entity.Facilities.Facil
 				)
 			)
 		) {
-			r.push(`${slave.slaveName} will not benefit from time at ${this.facility.name}.`);
+			if (slave.devotion < -20) {
+				r.push(`${slave.slaveName} is too resistant to be trusted at ${this.facility.name}.`);
+			} else {
+				r.push(`${slave.slaveName} will not benefit from time at ${this.facility.name}.`);
+			}
 		}
 
 		return r;
-- 
GitLab