diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js
index e910ab8f3b2118fd70bedc9b8c33dc5e442bea3d..3c2ffd62937f8bee197ef62e6058c23f201c190b 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());