diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js
index 69a6efaa78de631bc4432313f2a8c9ed217ea50f..8451ad35a613e09a205efcb6b03a214b07e01fd0 100644
--- a/src/interaction/siWardrobe.js
+++ b/src/interaction/siWardrobe.js
@@ -51,29 +51,30 @@ App.UI.SlaveInteract.wardrobe = function(slave) {
 			let niceOptionsArray = [];
 			let harshOptionsArray = [];
 
-			let clothingOption;
 			// Nice clothes
 			App.Data.clothes.nice.forEach(item => {
-				clothingOption = {
-					text: item.name,
-					updateSlave: {clothes: item.value, choosesOwnClothes: 0},
-					FS: item.fs,
-					slutty: item.slutty,
-					humiliating: item.humiliating
-				};
-				niceOptionsArray.push(clothingOption);
+				niceOptionsArray.push(
+					{
+						text: item.name,
+						updateSlave: {clothes: item.value, choosesOwnClothes: 0},
+						FS: item.fs,
+						slutty: item.slutty,
+						humiliating: item.humiliating
+					}
+				);
 			});
 			// Harsh clothes
 			App.Data.clothes.harsh.forEach(item => {
-				clothingOption = {
-					text: item.name,
-					updateSlave: {clothes: item.value, choosesOwnClothes: 0},
-					FS: item.fs,
-					slutty: item.slutty,
-					humiliating: item.humiliating
-				};
 				if (item.value !== "choosing her own clothes") {
-					harshOptionsArray.push(clothingOption);
+					harshOptionsArray.push(
+						{
+							text: item.name,
+							updateSlave: {clothes: item.value, choosesOwnClothes: 0},
+							FS: item.fs,
+							slutty: item.slutty,
+							humiliating: item.humiliating
+						}
+					);
 				}
 			});