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

Prepubescent slaves shouldn't have pubic hair.

parent 98a4e727
No related branches found
No related tags found
1 merge request!11462More AI art tweaks
...@@ -3,7 +3,7 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge ...@@ -3,7 +3,7 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge
* @returns {string} * @returns {string}
*/ */
positive() { positive() {
if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless") { 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;
} }
return `${this.slave.pubicHColor} ${this.slave.pubicHStyle} pubic hair`; return `${this.slave.pubicHColor} ${this.slave.pubicHStyle} pubic hair`;
...@@ -13,7 +13,7 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge ...@@ -13,7 +13,7 @@ App.Art.GenAI.PubicHairPromptPart = class PubicHairPromptPart extends App.Art.Ge
* @returns {string} * @returns {string}
*/ */
negative() { negative() {
if (this.slave.pubicHStyle === "waxed" || this.slave.pubicHStyle === "bald" || this.slave.pubicHStyle === "hairless") { 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 "pubic hair"; return "pubic hair";
} }
return; return;
......
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