From ae66fc1d6389aaf33ca9eb22e72abb633b31e246 Mon Sep 17 00:00:00 2001
From: Penumbra <xxsaykexx@gmail.com>
Date: Fri, 11 Oct 2024 20:42:11 +0000
Subject: [PATCH] Fix: Reverts Accidental Removal of
 CrotchPromptPart/AccessoryPromptPart in SDXL/Pony + Added More Compatible
 PromptParts from 1.5

---
 src/art/genAI/buildPrompt.js              | 10 +++++++---
 src/art/genAI/prompts/crotchPromptPart.js |  2 +-
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/art/genAI/buildPrompt.js b/src/art/genAI/buildPrompt.js
index 9caa57b78bf..9c4aa6b83f2 100644
--- a/src/art/genAI/buildPrompt.js
+++ b/src/art/genAI/buildPrompt.js
@@ -13,19 +13,23 @@ globalThis.buildPrompt = (slave) => {
 			prompts = [
 				new App.Art.GenAI.StylePromptPart(slave),
 				new App.Art.GenAI.StructurePromptPart(slave),
-				new App.Art.GenAI.NationalityPromptPart(slave),
 				new App.Art.GenAI.HairPromptPart(slave),
 				new App.Art.GenAI.RacePromptPart(slave),
+				new App.Art.GenAI.NationalityPromptPart(slave),
 				new App.Art.GenAI.DemographicsPromptPart(slave),
+				new App.Art.GenAI.CrotchPromptPart(slave),
+				new App.Art.GenAI.AccessoryPromptPart(slave),
+				new App.Art.GenAI.PubicHairPromptPart(slave),
 				new App.Art.GenAI.WeightPromptPart(slave),
 				new App.Art.GenAI.SkinPromptPart(slave),
 				new App.Art.GenAI.MusclesPromptPart(slave),
-				new App.Art.GenAI.EyebrowPromptPart(slave),
+				new App.Art.GenAI.EarsPromptPart(slave),
 				new App.Art.GenAI.EyePromptPart(slave),
+				new App.Art.GenAI.EyebrowPromptPart(slave),
 				new App.Art.GenAI.ExpressionPromptPart(slave),
 				new App.Art.GenAI.ArousalPromptPart(slave),
-				new App.Art.GenAI.EarsPromptPart(slave),
 				new App.Art.GenAI.ClothesPromptPart(slave),
+				new App.Art.GenAI.AndroidPromptPart(slave),
 				new App.Art.GenAI.CustomPromptPart(slave),
 			];
 			break;
diff --git a/src/art/genAI/prompts/crotchPromptPart.js b/src/art/genAI/prompts/crotchPromptPart.js
index 56932ba5de4..8fef2b25f1a 100644
--- a/src/art/genAI/prompts/crotchPromptPart.js
+++ b/src/art/genAI/prompts/crotchPromptPart.js
@@ -22,7 +22,7 @@ App.Art.GenAI.CrotchPromptPart = class CrotchPromptPart extends App.Art.GenAI.Pr
 
 		if (dick && vagina >= 0) {
 			// Applying this hard to override dick and pussy prompts.
-			promptParts.push("(futanari)");
+			promptParts.push("futanari, herm");
 		}
 
 		if (dick) {
-- 
GitLab