From 487226196d58776b42cde5172e9cbc20666423f7 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Tue, 18 Feb 2020 11:30:42 -0500 Subject: [PATCH] more exceptions --- src/js/wardrobeUse.js | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/js/wardrobeUse.js b/src/js/wardrobeUse.js index eab9038f68b..9df777bc51a 100644 --- a/src/js/wardrobeUse.js +++ b/src/js/wardrobeUse.js @@ -348,6 +348,11 @@ App.UI.Wardrobe.bellyAccessory = function(slave) { }; App.UI.Wardrobe.generateRows = function(array, category, slave, ignoreAccessCheck="false") { // category should be in the form of slave.category, the thing we want to update. + const + { + // eslint-disable-next-line no-unused-vars + he, him, his, hers, himself, boy, He, His + } = getPronouns(slave); let row = document.createElement('span'); for (let i = 0; i < array.length; i++) { let link; @@ -368,12 +373,18 @@ App.UI.Wardrobe.generateRows = function(array, category, slave, ignoreAccessChec // is it just text? if (array[i].disabled) { link = App.UI.DOM.disabledLink(array[i].text, [array[i].disabled]); - } else if ( + } else if ( // Should I try to pack these exceptions into miscData? category === "bellyAccessory" && (slave.belly >= 1500 && slave.weight >= 130) && array[i].updateSlave.bellyAccessory.endsWith("belly") ) { - link = App.UI.DOM.disabledLink(array[i].text, ["Slave is too large in the middle"]); + link = App.UI.DOM.disabledLink(array[i].text, [`${His} stomach is too big to fit an empathy belly around.`]); + } else if ( + category === "bellyAccessory" && + slave.belly <= 10000 && + array[i].updateSlave.bellyAccessory === "a support band" + ) { + link = App.UI.DOM.disabledLink(array[i].text, [`${His} stomach is too small to need this.`]); } else { link = document.createElement('span'); -- GitLab