diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js
index abde2ea06e8227232781ce93aaa82746d8887b4a..09baa0dcc7808936f9adc0a814b918b67aa88877 100644
--- a/src/js/itemAvailability.js
+++ b/src/js/itemAvailability.js
@@ -205,7 +205,7 @@ window.isClothingAccessible = function(string) {
 		return true;
 	}
 
-	const item = setup.clothes.find((i) => i.value === string);
+	const item = App.Data.misc.clothes.find((i) => i.value === string);
 	if (!item) {
 		console.log(`${string} is not a registered piece of clothing! Check App.Data.Misc.`);
 		return false; /* couldn't be found */
diff --git a/src/js/wardrobeUse.js b/src/js/wardrobeUse.js
index 02457478073e80f32da1185941bee28b4d8af13a..8613d38bee1f774edb1ddc5fe631058ef1a85be1 100644
--- a/src/js/wardrobeUse.js
+++ b/src/js/wardrobeUse.js
@@ -18,7 +18,7 @@ App.UI.Wardrobe.clothes = function(slave) {
 	let harshOptionsArray= [];
 
 	let clothingOption;
-	setup.clothes.forEach(item => {
+	App.Data.misc.clothes.forEach(item => {
 		clothingOption = {
 			text: item.name,
 			updateSlave: {clothes: item.value}