Skip to content
Snippets Groups Projects
Commit 3fd450cf authored by lowercasedonkey's avatar lowercasedonkey
Browse files

tweaks

parent 2d04fc0e
No related branches found
No related tags found
No related merge requests found
......@@ -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`);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment