From 4cf1da229bc9723399108df82ff2c075a75eb3ce Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 23 Aug 2020 12:56:47 -0400 Subject: [PATCH] misc cleanup --- js/003-data/policiesData.js | 4 ++-- src/npc/surgery/surgery.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js index 130bdbbb400..ebcb2e6fe07 100644 --- a/js/003-data/policiesData.js +++ b/js/003-data/policiesData.js @@ -16,11 +16,11 @@ * @property {string} [activatedNote] Note that appears if policy is activated. Please note that unlike the other "activated" categories, "note" is only displayed on deactivated policies. There is no fallback. */ /** - * @typedef {object<string, PolicySelector[]>} PolicySelectorGroup + * @typedef {Object.<string, PolicySelector[]>} PolicySelectorGroup * Key names represent a piece of the variable. "policies.SMR.basicSMR" will be checked against "V.policies.SMR.basicSMR". "arcologies[0].FSEgyptianRevivalistIncestPolicy" will be checked against "V.arcologies[0].FSEgyptianRevivalistIncestPolicy". */ -/** @type {object<string, PolicySelectorGroup>} */ +/** @type {Object.<string, PolicySelectorGroup>} */ App.Data.Policies.Selection = { SMR: { "policies.SMR.basicSMR": [ diff --git a/src/npc/surgery/surgery.js b/src/npc/surgery/surgery.js index cfb05caf0ff..bc8e5cf6b5a 100644 --- a/src/npc/surgery/surgery.js +++ b/src/npc/surgery/surgery.js @@ -451,7 +451,7 @@ App.Medicine.Surgery.sizingProcedures = function() { const largeImplantsAvailable = thisArcology.FSTransformationFetishistResearch === 1; const advancedSurgeryAvailable = V.ImplantProductionUpgrade === 1; const pronouns = getPronouns(slave); - const {he, His} = pronouns; + const {His} = pronouns; const types = App.Medicine.Keys.Surgery.Target.butt; // shortcuts const helper = new App.Medicine.Surgery.ListHelpers(slave, "butt", types, pronouns, false); -- GitLab