diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js
index 54e5e5034094f94ec2be91c4088862e144254e1f..c415a2e7cb849df03fe65f4d34f32025a29ba3ec 100644
--- a/src/interaction/siWardrobe.js
+++ b/src/interaction/siWardrobe.js
@@ -1096,7 +1096,21 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 						}
 				}
 			}
-			return Cloth + ". " + (desc || "");
+			desc = desc || "";
+			if (clothingData) {
+				if (clothingData.fs) {
+					if (clothingData.fs.loves) {
+						const lovers = [];
+						for (const FS of clothingData.fs.loves) {
+							lovers.push(App.Data.FutureSociety.records[FS].noun);
+						}
+						if (lovers.length > 0) {
+							desc += (` ${arrayToSentence(lovers)} will love this. `); // TODO: Please move tooltip to array when that becomes possible
+						}
+					}
+				}
+			}
+			return Cloth + ". " + desc;
 		}
 	}
 	/**