diff --git a/src/npc/descriptions/describeBrands.js b/src/npc/descriptions/describeBrands.js
index 19250234f7101169ef52da0a0ba3eb7bc09ab00b..19cfefacc2387efd018b211f51c07782088624ab 100644
--- a/src/npc/descriptions/describeBrands.js
+++ b/src/npc/descriptions/describeBrands.js
@@ -36,29 +36,7 @@ App.Desc.brand = function(slave, surface) {
 			let counter = 0;
 			for (const bodyPart of extraMarks) {
 				counter++;
-				surface = App.Desc.oppositeSides(bodyPart);
-				if (slave.brand[surface.center]) { // center defined, body part has no mirror.
-					r += `${slave.brand[surface.center]} branded into the flesh of ${his} ${surface.center}`;
-				} else { // Center not defined, body part has a mirror.
-					if (!slave.brand[surface.left] && !slave.brand[surface.right]) {
-						// no marks
-					} else if (bodyPart.startsWith("right ") && slave.brand[surface.left]) {
-						// we already described it on the left
-					} else if (slave.brand[surface.left] === slave.brand[surface.right]) {
-						// matching places and marks
-						// note that the slave.brand object won't have slave.brand["upper armS"] with an S defined, just the left and right, so we just use the left since we know they match.
-						r += `${slave.brand[surface.left]} branded into the flesh of both ${his} ${surface.both}`;
-					} else if (slave.brand[surface.left] && slave.brand[surface.right]) {
-						// matching places but different marks
-						r += `both ${slave.brand[surface.left]} branded into the flesh of ${his} ${surface.left}, and ${slave.brand[surface.right]} branded into ${his} ${surface.right}`;
-					} else if (slave.brand[surface.left]) {
-						// left
-						r += `${slave.brand[surface.left]} branded into the flesh of ${his} ${surface.left}`;
-					} else if (slave.brand[surface.right]) {
-						// right
-						r += `${slave.brand[surface.right]} branded into the flesh of ${his} ${surface.right}`;
-					}
-				}
+				r += desc(bodyPart);
 				if (counter === length) {
 					r += `. `;
 				} else if (counter === length - 1) {
@@ -71,45 +49,35 @@ App.Desc.brand = function(slave, surface) {
 			if (surface === "belly" && setup.fakeBellies.includes(bellyAccessory) && slave.brand.belly) {
 				r += `${His} fake belly has the same brand, ${slave.brand.belly}, as ${his} real one. `;
 			} else {
-				surface = App.Desc.oppositeSides(surface);
-				if (slave.brand[surface.center]) { // center defined, body part has no mirror.
-					r += `${He} has ${slave.brand[surface.center]} branded into the flesh of ${his} ${surface.center}. `;
-				} else { // Center not defined, body part has a mirror.
-					if (!slave.brand[surface.left] && !slave.brand[surface.right]) {
-						// no marks
-					} else if (slave.brand[surface.left] === slave.brand[surface.right]) {
-						// matching places and marks
-						// note that the slave.brand object won't have slave.brand["upper armS"] with an S defined, just the left and right, so we just use the left since we know they match.
-						r += `${He} has ${slave.brand[surface.left]} branded into the flesh of both ${his} ${surface.both}. `;
-					} else if (slave.brand[surface.left] && slave.brand[surface.right]) {
-						// matching places but different marks
-						r += `${He} has both ${slave.brand[surface.left]} branded into the flesh of ${his} ${surface.left}, and ${slave.brand[surface.right]} branded into ${his} ${surface.right}. `;
-					} else if (slave.brand[surface.left]) {
-						// left
-						r += `${He} has ${slave.brand[surface.left]} branded into the flesh of ${his} ${surface.left}. `;
-					} else if (slave.brand[surface.right]) {
-						// right
-						r += `${He} has ${slave.brand[surface.right]} branded into the flesh of ${his} ${surface.right}. `;
-					}
-				}
-			}
-		} else { /* describes all branded body parts */
-			for (let [key, value] of Object.entries(slave.brand)) {
-				if (r === ``) {
-					r += `${He} has `;
-				}
-				if (key === "belly" && setup.fakeBellies.includes(bellyAccessory) && slave.brand.belly) {
-					r += `${value} branded on both ${his} real belly and ${his} fake one, `;
-				} else {
-					r += `${value} branded into the flesh of ${his} ${key}, `;
-				}
-			}
-			if (r !== ``) {
-				r += `marking ${him} as yours. `;
-			} else {
-				r += `${His} body is unmarked by brands. `;
+				r += `${He} has ${desc(surface)}. `;
 			}
 		}
 	}
 	return r;
+
+	function desc(part) {
+		const surface = App.Desc.oppositeSides(part);
+		if (slave.brand[surface.center]) { // center defined, body part has no mirror.
+			return `${slave.brand[surface.center]} branded into the flesh of ${his} ${surface.center}`;
+		} else { // Center not defined, body part has a mirror.
+			if (!slave.brand[surface.left] && !slave.brand[surface.right]) {
+				return; // no marks
+			} else if (part.startsWith("right ") && slave.brand[surface.left]) {
+				return; // we already described it on the left
+			} else if (slave.brand[surface.left] === slave.brand[surface.right]) {
+				// matching places and marks
+				// note that the slave.brand object won't have slave.brand["upper armS"] with an S defined, just the left and right, so we just use the left since we know they match.
+				return `${slave.brand[surface.left]} branded into the flesh of both ${his} ${surface.both}`;
+			} else if (slave.brand[surface.left] && slave.brand[surface.right]) {
+				// matching places but different marks
+				return `both ${slave.brand[surface.left]} branded into the flesh of ${his} ${surface.left}, and ${slave.brand[surface.right]} branded into ${his} ${surface.right}`;
+			} else if (slave.brand[surface.left]) {
+				// left
+				return `${slave.brand[surface.left]} branded into the flesh of ${his} ${surface.left}`;
+			} else if (slave.brand[surface.right]) {
+				// right
+				return `${slave.brand[surface.right]} branded into the flesh of ${his} ${surface.right}`;
+			}
+		}
+	}
 };