diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 5a1ba40f64e26d2bd6fedefa3673a7349fdef49f..514f84e69ca5ebe9a600ddae2d7aa9d9f35e9381 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -319,9 +319,11 @@ 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"; }
@@ -332,6 +334,8 @@ 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); }
 
 	get mother() { return this.noun === "girl" ? "mother" : "father"; }
 	get Mother() { return capFirstChar(this.mother); }
diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js
index e60ba9aefbd82e4518cb71d82e39d1ddce76fa22..aca6228a9991e95c7bf0ec97c31bbdd22aeaeed5 100644
--- a/src/js/utilsFC.js
+++ b/src/js/utilsFC.js
@@ -2732,13 +2732,13 @@ 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', 'father',
-		'Man', 'Men', 'Shota', 'Son', 'Brother', 'Husband', 'Father',
+		'man', 'men', 'shota', 'son', 'brother', 'husband', 'husbands', 'father', 'fathers',
+		'Man', 'Men', 'Shota', 'Son', 'Brother', 'Husband', 'Husbands', 'Father', 'Fathers',
 		'she', 'her', 'hers', 'herself', 'girl',
 		'She', 'Her', 'Hers', 'Herself', 'Girl',
-		'woman', 'loli', 'daughter', 'sister', 'wife', 'mother',
-		'Woman', 'Loli', 'Daughter', 'Sister', 'Wife', 'Mother'
-	]; // Pronouns always refer to the slave in question, never any relation of theirs.  It is "mother" as in "she is a mother of many" not "you are her mother".
+		'woman', 'women', 'loli', 'daughter', 'sister', 'wife', 'wives', 'mother', 'mothers',
+		'Woman', 'Women', 'Loli', 'Daughter', 'Sister', 'Wife', 'Wives', 'Mother', 'Mothers'
+	];
 
 	const scope = pSuffix.length === 0 ? State.variables : State.temporary;
 	pronouns.forEach(p => {