diff --git a/src/js/assayJS.js b/src/js/assayJS.js index 8410cb3c551c2fc4cddad937577a32b003ff732b..73ba53b9e12b4afd35a635bc5391a6cb7e0f4eae 100644 --- a/src/js/assayJS.js +++ b/src/js/assayJS.js @@ -319,11 +319,9 @@ App.Utils.Pronouns = class { get Girl() { return this.Noun; } get woman() { return this.noun === "girl" ? "woman" : "man"; } - get women() { return this.noun === "girl" ? "women" : "men"; } get loli() { return this.noun === "girl" ? "loli" : "shota"; } get Woman() { return capFirstChar(this.woman); } - get Women() { return capFirstChar(this.women); } get Loli() { return capFirstChar(this.loli); } get daughter() { return this.noun === "girl" ? "daughter" : "son"; } @@ -334,16 +332,7 @@ App.Utils.Pronouns = class { get wife() { return this.noun === "girl" ? "wife" : "wife"; } get Wife() { return capFirstChar(this.wife); } - get wives() { return this.noun === "girl" ? "wives" : "wives"; } - get Wives() { return capFirstChar(this.wives); } - /* more accurately */ - /** - get wife() { return this.noun === "girl" ? "wife" : "husband"; } - get Wife() { return capFirstChar(this.wife); } - get wives() { return this.noun === "girl" ? "wives" : "husbands"; } - get Wives() { return capFirstChar(this.wives); } - */ /** * @param {string} suffix * @returns {Object.<string, string>} diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js index 34dad5c8066dbef0b43a16633fdb1e4a55a4a6a2..56339dbc4ae7fe5a97a896447c6a7b279cd84882 100644 --- a/src/js/utilsFC.js +++ b/src/js/utilsFC.js @@ -2732,12 +2732,12 @@ App.Utils.setLocalPronouns = function(slave, suffix, pronouns) { pronouns = pronouns || [ // Object.getOwnPropertyNames(ps) ? 'he', 'him', 'his', 'himself', 'boy', 'He', 'Him', 'His', 'Himself', 'Boy', - 'man', 'men', 'shota', 'son', 'brother', 'husband', 'husbands', - 'Man', 'Men', 'Shota', 'Son', 'Brother', 'Husband', 'Husbands', + 'man', 'men', 'shota', 'son', 'brother', 'husband', + 'Man', 'Men', 'Shota', 'Son', 'Brother', 'Husband', 'she', 'her', 'hers', 'herself', 'girl', 'She', 'Her', 'Hers', 'Herself', 'Girl', - 'woman', 'women', 'loli', 'daughter', 'sister', 'wife', 'wives', - 'Woman', 'Women', 'Loli', 'Daughter', 'Sister', 'Wife', 'Wives' + 'woman', 'loli', 'daughter', 'sister', 'wife', + 'Woman', 'Loli', 'Daughter', 'Sister', 'Wife', ]; const scope = pSuffix.length === 0 ? State.variables : State.temporary;