From 002b529c3fd60a8d7df59f8fd4221878a37c602a Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Thu, 7 May 2020 20:23:06 -0700
Subject: [PATCH] Don't get pronouns if we're not going to use them

---
 src/interaction/slaveInteract.js | 33 --------------------------------
 1 file changed, 33 deletions(-)

diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js
index 667e46af2a3..799636a324b 100644
--- a/src/interaction/slaveInteract.js
+++ b/src/interaction/slaveInteract.js
@@ -1770,17 +1770,6 @@ App.UI.SlaveInteract.fertility = function(slave) {
 };
 
 App.UI.SlaveInteract.curatives = function(slave) {
-	const {
-		// eslint-disable-next-line no-unused-vars
-		he,
-		him,
-		his,
-		hers,
-		himself,
-		boy,
-		He,
-		His
-	} = getPronouns(slave);
 	const curativeOptions = [];
 
 	curativeOptions.push({text: `None`, updateSlave: {curatives: 0}});
@@ -1810,17 +1799,6 @@ App.UI.SlaveInteract.curatives = function(slave) {
 };
 
 App.UI.SlaveInteract.aphrodisiacs = function(slave) {
-	const {
-		// eslint-disable-next-line no-unused-vars
-		he,
-		him,
-		his,
-		hers,
-		himself,
-		boy,
-		He,
-		His
-	} = getPronouns(slave);
 	const aphrodisiacOptions = [];
 
 	aphrodisiacOptions.push({text: `None`, updateSlave: {aphrodisiacs: 0}});
@@ -2309,17 +2287,6 @@ App.UI.SlaveInteract.smartSettings = function(slave) {
 App.UI.SlaveInteract.orgasm = function(slave) {
 	let el = document.createElement('div');
 
-	const {
-		// eslint-disable-next-line no-unused-vars
-		he,
-		him,
-		his,
-		hers,
-		himself,
-		boy,
-		He,
-		His
-	} = getPronouns(slave);
 	const masturbation = [];
 	const partner = [];
 	const family = [];
-- 
GitLab