diff --git a/src/js/wardrobeUse.js b/src/js/wardrobeUse.js
index f7b29e4310951fe0a1aedcea2eb109ceb019ad00..60f44fa393baee87bb6fa7221ea15d2a1967fb47 100644
--- a/src/js/wardrobeUse.js
+++ b/src/js/wardrobeUse.js
@@ -16,6 +16,7 @@ App.UI.Wardrobe.clothes = function(slave) {
 	let harshOptionsArray= [];
 	choiceOptionsArray.push({text: `Let ${him} choose`, updateSlave: {clothes: `choosing her own clothes`}});
 
+	// Nice options:
 	niceOptionsArray.push({text: `Apron`, updateSlave: {clothes: `an apron`}});
 	niceOptionsArray.push({text: `Ballgown`, updateSlave: {clothes: `a ball gown`}});
 	niceOptionsArray.push({text: `Ballgown`, updateSlave: {clothes: `a ball gown`}});
@@ -122,6 +123,7 @@ App.UI.Wardrobe.clothes = function(slave) {
 	niceOptionsArray.push({prefix: `FS`, text: `Toga`, updateSlave: {clothes: `a toga`}});
 	niceOptionsArray.push({prefix: `FS`, text: `Western clothing`, updateSlave: {clothes: `Western clothing`}});
 
+	// Harsh options:
 	harshOptionsArray.push({text: `Go naked`, updateSlave: {clothes: `no clothing`}});
 	harshOptionsArray.push({prefix: `FS`, text: `Chains`, updateSlave: {clothes: `chains`}});
 	harshOptionsArray.push({text: `Penitent nun`, updateSlave: {clothes: `a penitent nuns habit`}});
@@ -130,7 +132,6 @@ App.UI.Wardrobe.clothes = function(slave) {
 	harshOptionsArray.push({text: `Uncomfortable straps`, updateSlave: {clothes: `uncomfortable straps`}});
 
 	// Sort
-
 	niceOptionsArray = niceOptionsArray.sort((a, b) => (a.text > b.text) ? 1 : -1);
 	harshOptionsArray = harshOptionsArray.sort((a, b) => (a.text > b.text) ? 1 : -1);
 
@@ -220,8 +221,6 @@ App.UI.Wardrobe.clothes = function(slave) {
 				if (i < array.length-1) {
 					row.appendChild(separator);
 				}
-			} else {
-				//console.log(`${array[i].clothes} is not available`);
 			}
 		}