diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js index 856e9c66c6a3bb111e169122a42f27161fc8e47c..14f26e503ccbfd87a4971cc1de810d4e86f5bb46 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; };