From d1a174c1dc1c0d87fb2027c9bb7f86e337063857 Mon Sep 17 00:00:00 2001
From: Trinidad <anchaiscastilla@gmail.com>
Date: Thu, 27 Jul 2023 20:20:23 +0200
Subject: [PATCH] 	modified:   src/events/RESS/review/shiftDoorframe.js

---
 src/events/RESS/review/shiftDoorframe.js | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/events/RESS/review/shiftDoorframe.js b/src/events/RESS/review/shiftDoorframe.js
index cae868bdfa6..ef5084e02db 100644
--- a/src/events/RESS/review/shiftDoorframe.js
+++ b/src/events/RESS/review/shiftDoorframe.js
@@ -243,7 +243,7 @@ App.Events.RESSShiftDoorframe = class RESSShiftDoorframe extends App.Events.Base
 			choices.push(new App.Events.Result(`Pound that ass`, poundButt, (eventSlave.anus === 0 && canDoAnal(eventSlave)) ? `This option will take ${his} anal virginity` : null));
 		}
 		if ((eventSlave.toyHole === "dick" || V.policies.sexualOpenness === 1) && canPenetrate(eventSlave)) {
-			choices.push(new App.Events.Result(`Invite ${him} 'in'`, invitation, `This option will penetrate you${V.PC.vagina === 0 ? ". This option will take your virginity" : ""} ${V.PC.anus === 0 && V.PC.vagina < 0? ". This option will take your anal virginity" : ""}`)); // TODO: This response needs to be reviewed (or gated) after PC body is implemented
+			choices.push(new App.Events.Result(`Invite ${him} 'in'`, invitation, `This option will penetrate you${V.PC.vagina === 0 ? ". This option will take your virginity" : ""}${V.PC.anus === 0 && V.PC.vagina < 0? ". This option will take your anal virginity" : ""}`)); // TODO: This response needs to be reviewed (or gated) after PC body is implemented
 		}
 		App.Events.addResponses(node, choices);
 
@@ -258,9 +258,9 @@ App.Events.RESSShiftDoorframe = class RESSShiftDoorframe extends App.Events.Base
 				r.push(`on ${his} face as ${he} senses`);
 			}
 			r.push(`you stand up from your desk;`);
-			if (eventSlave.height > V.PC.height) {
+			if (eventSlave.height > V.PC.height + 5) {
 				r.push(`${he}'s tall enough for standing ${genitalText}, so as you approach ${he} just turns ${his} head back to face the door frame and cocks ${his} hips.`);
-			} else if (eventSlave.height > V.PC.height - 15) {
+			} else if (eventSlave.height > V.PC.height - 25) {
 				r.push(`${he}'s so short standing ${genitalText} is a stretch, so as you approach ${he} goes up on tiptoe with one leg and runs the other up the wall, using it as support to hike ${his} ass as high as ${he} can manage.`);
 			} else {
 				r.push(`${he}'s shorter than you, so as you approach ${he} goes up on tiptoe to bring ${his} ass to just the right height for standing ${genitalText}.`);
@@ -487,9 +487,9 @@ App.Events.RESSShiftDoorframe = class RESSShiftDoorframe extends App.Events.Base
 
 		function poundVagina() {
 			r = [...poundResponse()];
-			if (eventSlave.height > V.PC.height) {
+			if (eventSlave.height > V.PC.height + 5) {
 				r.push(`${He}'s so tall ${his} butt is at the perfect height right where it is, so ${he} relaxes as much as possible, trapped against the door frame.`);
-			} else if (eventSlave.height > V.PC.height - 15) {
+			} else if (eventSlave.height > V.PC.height - 25) {
 				r.push(`${He}'s short enough that even tiptoes aren't enough, and you force ${him} up between you and the door frame, pinning ${his} little body helplessly in place.`);
 			} else {
 				r.push(`${He} squirms up on tiptoes to get ${his} hips to the right height, trapped between you and the door frame.`);
@@ -538,9 +538,9 @@ App.Events.RESSShiftDoorframe = class RESSShiftDoorframe extends App.Events.Base
 
 		function poundButt() {
 			r = [...poundResponse()];
-			if (eventSlave.height > V.PC.height) {
+			if (eventSlave.height > V.PC.height + 5) {
 				r.push(`${He}'s so tall ${his} butt is at the perfect height right where it is, so ${he} relaxes as much as possible, trapped against the door frame.`);
-			} else if (eventSlave.height < V.PC.height - 15) {
+			} else if (eventSlave.height < V.PC.height - 25) {
 				r.push(`${He}'s short enough that even tiptoes aren't enough, and you force ${him} up between you and the door frame, pinning ${his} little body helplessly in place.`);
 			} else {
 				r.push(`${He} squirms up on tiptoes to get ${his} butt to the right height, trapped between you and the door frame.`);
@@ -600,7 +600,7 @@ App.Events.RESSShiftDoorframe = class RESSShiftDoorframe extends App.Events.Base
 				r.push(`on ${his} face as ${he} senses`);
 			}
 			r.push(`you stand up from your desk and saunter over;`);
-			if (eventSlave.height > V.PC.height) {
+			if (eventSlave.height > V.PC.height + 5) {
 				r.push(`${he}'s tall enough for standing`);
 				if (V.PC.vagina !== -1) {
 					r.push(`sex,`);
@@ -608,7 +608,7 @@ App.Events.RESSShiftDoorframe = class RESSShiftDoorframe extends App.Events.Base
 					r.push(`anal,`);
 				}
 				r.push(`so as you approach ${he} just readies ${himself} to fuck ${his} lover.`);
-			} else if (eventSlave.height < V.PC.height - 15) {
+			} else if (eventSlave.height < V.PC.height - 25) {
 				r.push(`${he}'s so short standing ${V.PC.vagina < 0 ? "anal" : "sex"} is a stretch, so once you approach you get down on your knees and greet the dick that will soon be in your`);
 				if (V.PC.vagina !== -1) {
 					r.push(`${V.PC.vagina === 0 ? "virgin " : ""}pussy.`);
-- 
GitLab