diff --git a/src/facilities/wardrobe/wardrobeShopping.js b/src/facilities/wardrobe/wardrobeShopping.js
index 7e5254f24ade35d45d272c2541ba66e55c2fd55b..1572f0abb4d68c88787fa1e4f8b96df8549e956c 100644
--- a/src/facilities/wardrobe/wardrobeShopping.js
+++ b/src/facilities/wardrobe/wardrobeShopping.js
@@ -9,7 +9,7 @@ App.UI.WardrobeShopping = function() {
 	r.push(`The room containing all the clothes and accessories you have available to dress your slaves in, as well as the supplies and tools your tailor needs to resize them to better fit your slaves. Several mirrors are set up for a slave to try on outfits should they be allowed to dress themselves. The selection includes`);
 	let ownItAll = true;
 	for (const [key, value] of App.Data.clothes) {
-		if(isItemAccessible.entry(key, "clothing")) {
+		if (isItemAccessible.entry(key, "clothing") !== true) {
 			ownItAll = false;
 			break;
 		}