Skip to content
Snippets Groups Projects
Commit 0fa0562b authored by svornost's avatar svornost
Browse files

Don't prompt for pubic hair if the genitals are covered by clothes.

parent 8e692a8c
Branches
Tags
1 merge request!11561Custom per-slave prompting for AI Art
...@@ -6,6 +6,9 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge ...@@ -6,6 +6,9 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge
if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless" || this.slave.physicalAge < Math.min(this.slave.pubertyAgeXX, this.slave.pubertyAgeXY)) { if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless" || this.slave.physicalAge < Math.min(this.slave.pubertyAgeXX, this.slave.pubertyAgeXY)) {
return; return;
} }
if (App.Data.clothes.get(this.slave.clothes).exposure < 3) {
return; // pubic region should be covered by clothes
}
const style = (this.slave.pubicHStyle === "bushy in the front and neat in the rear" ? "bushy" : this.slave.pubicHStyle); // less complicated prompt works better for the long style const style = (this.slave.pubicHStyle === "bushy in the front and neat in the rear" ? "bushy" : this.slave.pubicHStyle); // less complicated prompt works better for the long style
return `${this.slave.pubicHColor} ${style} pubic hair`; return `${this.slave.pubicHColor} ${style} pubic hair`;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment