diff --git a/src/js/wardrobeUse.js b/src/js/wardrobeUse.js
index eab9038f68b60cd2c6b3becf2d5c853b5da11884..9df777bc51a70180e96db961d4f2639d33f7a433 100644
--- a/src/js/wardrobeUse.js
+++ b/src/js/wardrobeUse.js
@@ -348,6 +348,11 @@ App.UI.Wardrobe.bellyAccessory = function(slave) {
 };
 
 App.UI.Wardrobe.generateRows = function(array, category, slave, ignoreAccessCheck="false") { // category should be in the form of slave.category, the thing we want to update.
+	const
+		{
+			// eslint-disable-next-line no-unused-vars
+			he, him, his, hers, himself, boy, He, His
+		} = getPronouns(slave);
 	let row = document.createElement('span');
 	for (let i = 0; i < array.length; i++) {
 		let link;
@@ -368,12 +373,18 @@ App.UI.Wardrobe.generateRows = function(array, category, slave, ignoreAccessChec
 			// is it just text?
 			if (array[i].disabled) {
 				link = App.UI.DOM.disabledLink(array[i].text, [array[i].disabled]);
-			 } else if (
+			 } else if ( // Should I try to pack these exceptions into miscData?
 				category === "bellyAccessory" &&
 				(slave.belly >= 1500 && slave.weight >= 130) &&
 				array[i].updateSlave.bellyAccessory.endsWith("belly")
 			) {
-				link = App.UI.DOM.disabledLink(array[i].text, ["Slave is too large in the middle"]);
+				link = App.UI.DOM.disabledLink(array[i].text, [`${His} stomach is too big to fit an empathy belly around.`]);
+			} else if (
+				category === "bellyAccessory" &&
+				slave.belly <= 10000 &&
+				array[i].updateSlave.bellyAccessory === "a support band"
+			) {
+				link = App.UI.DOM.disabledLink(array[i].text, [`${His} stomach is too small to need this.`]);
 			} else {
 				link = document.createElement('span');