From ffabaa6fa33d91405c32229ed477e2fe90dfd706 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Tue, 5 Dec 2023 09:57:51 -0500
Subject: [PATCH] Make Starting Girls seed reset available for AI Art as well
 as WebGL.

---
 src/npc/startingGirls/startingGirls.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js
index e910ab8f3b2..3c2ffd62937 100644
--- a/src/npc/startingGirls/startingGirls.js
+++ b/src/npc/startingGirls/startingGirls.js
@@ -1862,10 +1862,10 @@ App.StartingGirls.profile = function(slave, cheat = false) {
 	options.addOption("Description", "desc", slave.custom).showTextBox({large: true})
 		.addComment("Use complete, capitalized and punctuated sentences.");
 	options.addOption("Label", "label", slave.custom).showTextBox().addComment("Use a short phrase");
-	if (V.imageChoice === 4) {
+	if (V.imageChoice === 4 || V.imageChoice === 6) {
 		options.addOption("Art Seed", "artSeed", slave.natural).showTextBox({large: true})
 			.customButton("Randomize", () => slave.natural.artSeed = jsRandom(0, 10 ** 14), "")
-			.addComment(`The WebGL Art Renderer uses the art seed to set minor face and body parameters. You can change it if you don't like this slave's appearance.`);
+			.addComment(`The WebGL and AI Art renderers use the art seed to set minor face and body parameters. You can change it if you don't like this slave's appearance.`);
 	}
 
 	el.append(options.render());
-- 
GitLab