Skip to content
Snippets Groups Projects
Commit 305d2f42 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'helper-fix' into 'pregmod-master'

Helper isMasculine fix

See merge request !12210
parents fe90d017 415b2ed1
No related branches found
No related tags found
1 merge request!12210Helper isMasculine fix
Pipeline #87076 passed
...@@ -134,7 +134,7 @@ App.Art.GenAI.PromptHelpers = (() => { ...@@ -134,7 +134,7 @@ App.Art.GenAI.PromptHelpers = (() => {
const isMasculine = (slave) => { const isMasculine = (slave) => {
if (V.aiGenderHint === 1) { // Hormone balance if (V.aiGenderHint === 1) { // Hormone balance
return !this.isFeminine; return !isFeminine(slave);
} else if (V.aiGenderHint === 2) { // Perceived gender } else if (V.aiGenderHint === 2) { // Perceived gender
return perceivedGender(slave) < -1; return perceivedGender(slave) < -1;
} else if (V.aiGenderHint === 3) { // Pronouns } else if (V.aiGenderHint === 3) { // Pronouns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment