From b3c05e46ef1891ddb5df77bc723fd84a8fc6fef2 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Mon, 18 Mar 2019 03:42:48 -0400
Subject: [PATCH] Corrected errant virginity check

---
 devNotes/VersionChangeLog-Premod+LoliMod.txt | 2 ++
 src/uncategorized/RESS.tw                    | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 5c5d732dc7f..dcbfa59a4fe 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,6 +2,8 @@ Pregmod
 
 0.10.7.1-2.2.x
 
+	-player can now be impregnated during the futanari sister orgy
+	-added tracking for futanari sister impregnation
 	-player medicine and trading skill now more useful
 	-fixes
 	-code cleaning
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index d8fe2f6e214..43fc0b77538 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -9582,7 +9582,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		<<= AnalVCheck()>>
 	<</if>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
 <</if>>
 
 <<case "impregnation please">>
-- 
GitLab