diff --git a/src/facilities/wardrobe/wardrobeShopping.js b/src/facilities/wardrobe/wardrobeShopping.js
index f42b22be64490fa0c6baddc78ebe355194addf05..93f1d61ec33ab27cb5660494fffda4912337c7ea 100644
--- a/src/facilities/wardrobe/wardrobeShopping.js
+++ b/src/facilities/wardrobe/wardrobeShopping.js
@@ -86,13 +86,14 @@ App.UI.WardrobeShopping = function() {
 			const cost = Math.trunc(clothingObj.cost * V.upgradeMultiplierTrade);
 			let div;
 
-			if (V.seeImages === 1) {
-				// If we have more than one possible outfit to showcase, make sure not to show the outfit we did last time.
-				const clothesArray = clothingObj.contains.length > 1 ? clothingObj.contains.filter(item => item !== oldOutfit) : clothingObj.contains;
+			// If we have more than one possible outfit to showcase, make sure not to show the outfit we did last time.
+			const clothesArray = clothingObj.contains.length > 1 ? clothingObj.contains.filter(item => item !== oldOutfit) : clothingObj.contains;
 
-				// Get a randomly chosen piece of clothing from the set to display:
-				model.clothes = clothesArray[Math.floor(Math.random() * clothesArray.length)];
+			// Get a randomly chosen piece of clothing from the set to display
+			// This piece will also later be checked to see if we can purchase it or not.
+			model.clothes = clothesArray[Math.floor(Math.random() * clothesArray.length)];
 
+			if (V.seeImages === 1) {
 				// Some clothing is weird (looking at you, Egyptian necklace)
 				if (clothingObj.hasOwnProperty("modelUpdate")) {
 					Object.assign(model, clothingObj.modelUpdate);
@@ -113,7 +114,7 @@ App.UI.WardrobeShopping = function() {
 					jQuery(`#${clothing}`).empty().append(createCell(clothing, model.clothes));
 				};
 			}
-			if (!V.boughtItem.clothing[clothing]) {
+			if (!isItemAccessible.entry(model.clothes, "clothing")) {
 				if (cost < V.cash) {
 					App.UI.DOM.appendNewElement(
 						"div",