diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js
index bbfdbbaf2eeae352f24794d82b960c7788c3a0ab..8f6140c27f111cc6ca8f024fae3bf8abe51c5684 100644
--- a/src/npc/descriptions/belly/belly.js
+++ b/src/npc/descriptions/belly/belly.js
@@ -2665,7 +2665,7 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) {
 	function clothing() {
 		const r = [];
 		const clothing = App.Data.clothes.get(slave.clothes);
-		if (clothing && "belly" in clothing.desc) {
+		if (clothing && clothing.desc && "belly" in clothing.desc) {
 			r.push(clothing.desc.belly(slave));
 		} else {
 			switch (slave.clothes) {
diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js
index b50138eb19b0ac3c9a2e001e624be99a5651d238..0754af60b45c3271fe554f65c6d747177b11be7e 100644
--- a/src/npc/descriptions/boobs/boobs.js
+++ b/src/npc/descriptions/boobs/boobs.js
@@ -262,7 +262,7 @@ App.Desc.boobs = function() {
 		let r = '';
 		const {he, his, him, His, girl} = getPronouns(slave);
 		const clothing = App.Data.clothes.get(slave.clothes);
-		if (clothing && "boobs" in clothing.desc) {
+		if (clothing && clothing.desc && "boobs" in clothing.desc) {
 			r += clothing.desc.boobs(slave);
 		} else {
 			switch (slave.clothes) {
diff --git a/src/npc/descriptions/butt/butt.js b/src/npc/descriptions/butt/butt.js
index 93c0162689d559f27aa98b3dc5d91d199097dcf4..ef1b4dfd913128632fa2ac50be1429c10de3be9e 100644
--- a/src/npc/descriptions/butt/butt.js
+++ b/src/npc/descriptions/butt/butt.js
@@ -14,7 +14,7 @@ App.Desc.butt = function(slave, {market, eventDescription} = {}) {
 	if (V.showClothing === 1 && !market) {
 		if (V.surgeryDescription === 0) {
 			const clothing = App.Data.clothes.get(slave.clothes);
-			if (clothing && "butt" in clothing.desc) {
+			if (clothing && clothing.desc && "butt" in clothing.desc) {
 				r.push(clothing.desc.butt(slave));
 			} else {
 				switch (slave.clothes) {
diff --git a/src/npc/descriptions/butt/buttplug.js b/src/npc/descriptions/butt/buttplug.js
index 24e87de2e23555c68dfdf7f37634dd2632d636e4..8bc3ef985ae0aaa90c5172e430c9cd9413f9b5ef 100644
--- a/src/npc/descriptions/butt/buttplug.js
+++ b/src/npc/descriptions/butt/buttplug.js
@@ -25,7 +25,7 @@ App.Desc.buttplug = function(slave, {market, eventDescription} = {}) {
 	} else {
 		if (V.showClothing === 1 && !market) {
 			const clothing = App.Data.clothes.get(slave.clothes);
-			if (clothing && "buttplug" in clothing.desc) {
+			if (clothing && clothing.desc && "buttplug" in clothing.desc) {
 				r.push(clothing.desc.buttplug(slave));
 			} else {
 				switch (slave.clothes) {
diff --git a/src/npc/descriptions/crotch/crotch.js b/src/npc/descriptions/crotch/crotch.js
index 76867ee17d983b36b059bfca778878f1fc7ca4c5..c31e2878c48a16c244283b0bd36c5a01ea979318 100644
--- a/src/npc/descriptions/crotch/crotch.js
+++ b/src/npc/descriptions/crotch/crotch.js
@@ -25,7 +25,7 @@ App.Desc.crotch = function(slave, {market, eventDescription} = {}) {
 			}
 		} else {
 			const clothing = App.Data.clothes.get(slave.clothes);
-			if (clothing && "crotch" in clothing.desc) {
+			if (clothing && clothing.desc && "crotch" in clothing.desc) {
 				r.push(clothing.desc.crotch(slave));
 				switch (slave.clothes) {
 					case "a Fuckdoll suit":
diff --git a/src/npc/descriptions/describePiercings.js b/src/npc/descriptions/describePiercings.js
index ed684b0c752bd1729325fd337a4b6a6104791d18..d5d27e471cffed0213debb59c34be93af9814f3a 100644
--- a/src/npc/descriptions/describePiercings.js
+++ b/src/npc/descriptions/describePiercings.js
@@ -23,7 +23,7 @@ App.Desc.piercing = function(slave, surface) {
 				}
 				if (slave.assignment === "get milked" || slave.assignment === "work in the dairy") {
 					r.push(`${He} has a plastic livestock tag in one ear to help identify ${him} for milking.`);
-				} else if (clothing && "earPiercing" in clothing.desc) {
+				} else if (clothing && clothing.desc && "earPiercing" in clothing.desc) {
 					r.push(clothing.desc.earPiercing(slave));
 				} else {
 					switch (slave.clothes) {
@@ -519,7 +519,7 @@ App.Desc.piercing = function(slave, surface) {
 						}
 					} else {
 						const clothing = App.Data.clothes.get(slave.clothes);
-						if (clothing && "corsetPiercing" in clothing.desc) {
+						if (clothing && clothing.desc && "corsetPiercing" in clothing.desc) {
 							r.push(clothing.desc.corsetPiercing(slave));
 						} else {
 							switch (slave.clothes) {
diff --git a/src/npc/descriptions/style/clothing.js b/src/npc/descriptions/style/clothing.js
index ef8172bf1c470b13d10ce9bc6d2760854e842971..158a6f1300a4e0beea7946c0171119e9f407fc39 100644
--- a/src/npc/descriptions/style/clothing.js
+++ b/src/npc/descriptions/style/clothing.js
@@ -16,7 +16,7 @@ App.Desc.clothing = function(slave, {market, eventDescription} = {}) {
 
 		r.push(`${slave.slaveName} is wearing ${slave.clothes},`);
 		const clothing = App.Data.clothes.get(slave.clothes);
-		if (clothing && "summary" in clothing.desc) {
+		if (clothing && clothing.desc && "summary" in clothing.desc) {
 			r.push(clothing.desc.summary(slave));
 		} else {
 			switch (slave.clothes) {
diff --git a/src/npc/descriptions/style/clothingCorset.js b/src/npc/descriptions/style/clothingCorset.js
index c039f235ad20c1874387dfb3c16f0fe522cd7024..9d7d202c2a5f35683274d5fb05db81a067afb1a7 100644
--- a/src/npc/descriptions/style/clothingCorset.js
+++ b/src/npc/descriptions/style/clothingCorset.js
@@ -8,7 +8,7 @@ App.Desc.clothingCorset = function(slave) {
 		his, He, His
 	} = getPronouns(slave);
 	const clothing = App.Data.clothes.get(slave.clothes);
-	if (clothing && "clothingCorset" in clothing.desc) {
+	if (clothing && clothing.desc && "clothingCorset" in clothing.desc) {
 		r.push(clothing.desc.clothingCorset(slave));
 	} else {
 		switch (slave.clothes) {
diff --git a/src/npc/descriptions/style/hairClothing.js b/src/npc/descriptions/style/hairClothing.js
index 2a4ca379609868533125fa237f2df1c192ef6314..bfa07f1a2fcab85bf6cfb29e4ee57aa1d77061cd 100644
--- a/src/npc/descriptions/style/hairClothing.js
+++ b/src/npc/descriptions/style/hairClothing.js
@@ -10,7 +10,7 @@ App.Desc.hairClothing = function(slave) {
 
 	if (slave.fuckdoll === 0) {
 		const clothing = App.Data.clothes.get(slave.clothes);
-		if (clothing && "hStyle" in clothing.desc) {
+		if (clothing && clothing.desc && "hStyle" in clothing.desc) {
 			r.push(clothing.desc.hStyle(slave));
 		} else {
 			switch (slave.hStyle) {
diff --git a/src/npc/descriptions/style/upperFace.js b/src/npc/descriptions/style/upperFace.js
index a3def8f0a35b828f87fd33f95e02c7eb2d72f87b..3265bef00878304553f8e4029df69999b31f2000 100644
--- a/src/npc/descriptions/style/upperFace.js
+++ b/src/npc/descriptions/style/upperFace.js
@@ -52,7 +52,7 @@ App.Desc.upperFace = function(slave) {
 		if (slave.eyewear === "corrective glasses" || slave.eyewear === "blurring glasses" || slave.eyewear === "glasses") {
 			r.push(`${He}'s wearing a pair of`);
 			const clothing = App.Data.clothes.get(slave.clothes);
-			if (clothing && "upperFace" in clothing.desc) {
+			if (clothing && clothing.desc && "upperFace" in clothing.desc) {
 				r.push(clothing.desc.upperFace(slave));
 			} else {
 				switch (slave.clothes) {