From 3fd450cfb2d0d7de954d9a2cd27e32866153032e Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 16 Feb 2020 23:19:40 -0500 Subject: [PATCH] tweaks --- src/js/wardrobeUse.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/js/wardrobeUse.js b/src/js/wardrobeUse.js index f7b29e43109..60f44fa393b 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`); } } -- GitLab