diff --git a/src/js/wardrobeUse.js b/src/js/wardrobeUse.js
index 199d5a31034aeb6eeb990939e1d0f0dd307e7c90..7b9787421457f17fcabda4131cb13a64e611f4a5 100644
--- a/src/js/wardrobeUse.js
+++ b/src/js/wardrobeUse.js
@@ -24,7 +24,7 @@ App.UI.Wardrobe.clothes = function(slave) {
 			updateSlave: {clothes: item.value}
 		};
 		if (item.fs) {
-			clothingOption.prefix = item.fs;
+			clothingOption.FS = item.fs;
 		}
 		if (item.comfort === "nice") {
 			niceOptionsArray.push(clothingOption);
@@ -79,7 +79,7 @@ App.UI.Wardrobe.clothes = function(slave) {
 
 			// Test to see if there was a problem with the key
 			for (let j = 0; j < keys.length; j++) {
-				if (["prefix", "text", "updateSlave", "update", "note", "disabled"].includes(keys[j])) {
+				if (["FS", "text", "updateSlave", "update", "note", "disabled"].includes(keys[j])) {
 					continue;
 				} else {
 					array[i].text += " ERROR, THIS SCENE WAS NOT ENTERED CORRECTLY";
@@ -104,13 +104,13 @@ App.UI.Wardrobe.clothes = function(slave) {
 						)
 					);
 
-					if (array[i].prefix) {
-						let prefix = array[i].prefix.substring(2);
-						prefix = capFirstChar(prefix);
-						prefix = prefix.replace(/([A-Z])/g, ` $1`);
-						prefix = App.UI.DOM.disabledLink(`FS`, [prefix]);
-						prefix.style.fontStyle = "italic";
-						link.appendChild(prefix);
+					if (array[i].FS) {
+						let FS = array[i].FS.substring(2);
+						FS = capFirstChar(FS);
+						FS = FS.replace(/([A-Z])/g, ` $1`);
+						FS = App.UI.DOM.disabledLink(`FS`, [FS]);
+						FS.style.fontStyle = "italic";
+						link.appendChild(FS);
 					}
 
 					// add a note node if required