From b5f6f92f351f774db29b3a96926bad41502c24ba Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Fri, 1 May 2020 13:38:30 -0400 Subject: [PATCH] eslint formatting --- src/js/slaveSummaryWidgets.js | 1 - src/npc/surgery/organs.js | 32 ++++++++++++++++++++++++-------- 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js index 1a250b66c84..e3e822c0e61 100644 --- a/src/js/slaveSummaryWidgets.js +++ b/src/js/slaveSummaryWidgets.js @@ -1,5 +1,4 @@ App.UI.SlaveSummaryRenderers = function() { - const bits = App.UI.SlaveSummaryImpl.bits; const helpers = App.UI.SlaveSummaryImpl.helpers; const data = App.Data.SlaveSummary; diff --git a/src/npc/surgery/organs.js b/src/npc/surgery/organs.js index 4fa95eee6bb..7c000bcade7 100644 --- a/src/npc/surgery/organs.js +++ b/src/npc/surgery/organs.js @@ -47,11 +47,21 @@ App.Medicine.OrganFarm.init = function() { ] }); - new App.Medicine.OrganFarm.Testicles({type: "testicles", name: "Testicles", ballType: "human", animal: false}); - new App.Medicine.OrganFarm.Testicles({type: "pigTesticles", name: "Pig testicles", ballType: "pig", animal: true}); - new App.Medicine.OrganFarm.Testicles({type: "dogTesticles", name: "Dog testicles", ballType: "dog", animal: true}); - new App.Medicine.OrganFarm.Testicles({type: "horseTesticles", name: "Horse testicles", ballType: "horse", animal: true}); - new App.Medicine.OrganFarm.Testicles({type: "cowTesticles", name: "Cow testicles", ballType: "cow", animal: true}); + new App.Medicine.OrganFarm.Testicles({ + type: "testicles", name: "Testicles", ballType: "human", animal: false + }); + new App.Medicine.OrganFarm.Testicles({ + type: "pigTesticles", name: "Pig testicles", ballType: "pig", animal: true + }); + new App.Medicine.OrganFarm.Testicles({ + type: "dogTesticles", name: "Dog testicles", ballType: "dog", animal: true + }); + new App.Medicine.OrganFarm.Testicles({ + type: "horseTesticles", name: "Horse testicles", ballType: "horse", animal: true + }); + new App.Medicine.OrganFarm.Testicles({ + type: "cowTesticles", name: "Cow testicles", ballType: "cow", animal: true + }); new App.Medicine.OrganFarm.Organ({ type: "scrotum", name: "Scrotum", tooltip: "requires balls for successful implantation", cost: 2500, time: 5, @@ -68,8 +78,12 @@ App.Medicine.OrganFarm.init = function() { ] }); - new App.Medicine.OrganFarm.Ovaries({type: "ovaries", name: "Ovaries", eggType: "human", pregData: "human", animal: false}); - new App.Medicine.OrganFarm.Ovaries({type: "pigOvaries", name: "Pig ovaries", eggType: "pig", pregData: "pig", animal: true}); + new App.Medicine.OrganFarm.Ovaries({ + type: "ovaries", name: "Ovaries", eggType: "human", pregData: "human", animal: false + }); + new App.Medicine.OrganFarm.Ovaries({ + type: "pigOvaries", name: "Pig ovaries", eggType: "pig", pregData: "pig", animal: true + }); new App.Medicine.OrganFarm.Ovaries({ type: "dogOvaries", name: "Dog ovaries", @@ -84,7 +98,9 @@ App.Medicine.OrganFarm.init = function() { pregData: "equine", animal: true }); - new App.Medicine.OrganFarm.Ovaries({type: "cowOvaries", name: "Cow ovaries", eggType: "cow", pregData: "cow", animal: true}); + new App.Medicine.OrganFarm.Ovaries({ + type: "cowOvaries", name: "Cow ovaries", eggType: "cow", pregData: "cow", animal: true + }); new App.Medicine.OrganFarm.AnalWomb({ type: "mpreg", -- GitLab