diff --git a/src/art/genAI/hairPromptPart.js b/src/art/genAI/hairPromptPart.js
index b48071d00fb9ec6144c79e5ef3759d7f38b9beac..1c0a2f9e470e856cdd408e2d26e01a204a2b7322 100644
--- a/src/art/genAI/hairPromptPart.js
+++ b/src/art/genAI/hairPromptPart.js
@@ -3,7 +3,7 @@ App.Art.GenAI.HairPromptPart = class HairPromptPart extends App.Art.GenAI.Prompt
 	 * @returns {string}
 	 */
 	positive() {
-		if (this.slave.bald || this.slave.hLength === 0) {
+		if (this.slave.hStyle === "bald" || this.slave.hLength === 0) {
 			return `bald`;
 		}
 
@@ -29,7 +29,7 @@ App.Art.GenAI.HairPromptPart = class HairPromptPart extends App.Art.GenAI.Prompt
 	 * @returns {string}
 	 */
 	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;