From 6956d21f9611670f422a46743b07ad35d29278b4 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 20 Dec 2020 21:00:45 -0500
Subject: [PATCH] change the very definition of womanhood

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

diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js
index 856e9c66c6a..14f26e503cc 100644
--- a/src/js/utilsFC.js
+++ b/src/js/utilsFC.js
@@ -3087,10 +3087,10 @@ App.Utils.alphabetizeIterable = function(iterable) {
 
 /**
  * Returns how exposing a slave's outfit is, after taking into consideration a topless outfit is more revealing for beboobed slaves or female ones.
- * @param {App.Entity.SlaveState} slave 
+ * @param {App.Entity.SlaveState} slave
  * @returns {0|1|2|3|4}
  */
 globalThis.getExposure = function(slave) {
 	const clothes = App.Data.clothes.get(slave.clothes);
-	return (clothes.topless && clothes.exposure < 3 && (slave.boobs > 299 || slave.pronoun === 0)) ? 3 : clothes.exposure;
+	return (clothes.topless && clothes.exposure < 3 && (slave.boobs > 299 || (slave.genes === 'XX' && slave.vagina >= 0))) ? 3 : clothes.exposure;
 };
-- 
GitLab