From 3d6a122edb091f066090f8867b05eaf73158f3ea Mon Sep 17 00:00:00 2001
From: ezsh <ezsh.junk@gmail.com>
Date: Sat, 1 Jun 2019 15:16:58 +0200
Subject: [PATCH] Add capitalized "woman" forms to the Pronouns class

---
 src/js/assayJS.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 897c9277802..2c70892482f 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -409,6 +409,10 @@ App.Utils.Pronouns = class {
 	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); }
 };
 
 /**
-- 
GitLab