Skip to content
Snippets Groups Projects
Commit 8d96571b authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'wigs-as-hair' into 'pregmod-master'

Generate hair when slave wears wig

See merge request pregmodfan/fc-pregmod!11573
parents cfbd6015 65227985
No related branches found
No related tags found
1 merge request!11573Generate hair when slave wears wig
Pipeline #70990 failed
...@@ -3,7 +3,7 @@ App.Art.GenAI.HairPromptPart = class HairPromptPart extends App.Art.GenAI.Prompt ...@@ -3,7 +3,7 @@ App.Art.GenAI.HairPromptPart = class HairPromptPart extends App.Art.GenAI.Prompt
* @returns {string} * @returns {string}
*/ */
positive() { positive() {
if (this.slave.bald || this.slave.hLength === 0) { if (this.slave.hStyle === "bald" || this.slave.hLength === 0) {
return `bald`; return `bald`;
} }
...@@ -29,7 +29,7 @@ App.Art.GenAI.HairPromptPart = class HairPromptPart extends App.Art.GenAI.Prompt ...@@ -29,7 +29,7 @@ App.Art.GenAI.HairPromptPart = class HairPromptPart extends App.Art.GenAI.Prompt
* @returns {string} * @returns {string}
*/ */
negative() { negative() {
if (this.slave.bald || this.slave.hLength === 0) { if (this.slave.hStyle === "bald" || this.slave.hLength === 0) {
return `hair, long hair, short hair`; return `hair, long hair, short 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