From 04494dec34ad4f497dce3b5fd12dba87f9710e2a Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 20 Dec 2020 17:26:27 -0500
Subject: [PATCH] wardrobe fix

---
 src/facilities/wardrobe/wardrobeShopping.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/facilities/wardrobe/wardrobeShopping.js b/src/facilities/wardrobe/wardrobeShopping.js
index 7e5254f24ad..1572f0abb4d 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;
 		}
-- 
GitLab