From 968467a7d6e547a0c42758e9d322903aac84e413 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Thu, 12 Mar 2020 01:05:28 -0400 Subject: [PATCH] fix spaces --- src/js/heroCreator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/js/heroCreator.js b/src/js/heroCreator.js index 99158605d21..4e30e6de42f 100644 --- a/src/js/heroCreator.js +++ b/src/js/heroCreator.js @@ -1,7 +1,7 @@ /** creates an array from App.Data.HeroSlaves that will be similar to the old $heroSlaves. * @returns {Array} */ -App.Utils.buildHeroArray = function () { +App.Utils.buildHeroArray = function() { let array; if (V.seeExtreme === 1) { array = App.Data.HeroSlaves.D.concat( @@ -44,7 +44,7 @@ App.Utils.buildHeroArray = function () { * @param {App.Entity.SlaveState} heroSlave * @returns {App.Entity.SlaveState} */ -App.Utils.getHeroSlave = function (heroSlave) { +App.Utils.getHeroSlave = function(heroSlave) { function repairLimbs(slave) { if (slave.hasOwnProperty("removedLimbs")) { if (slave.removedLimbs[0] === 1) { @@ -186,7 +186,7 @@ App.Utils.getHeroSlave = function (heroSlave) { * @param {{}}hero * @param {string} limb */ -App.Utils.removeHeroLimbs = function (hero, limb = "all") { +App.Utils.removeHeroLimbs = function(hero, limb = "all") { if (!hero.hasOwnProperty("removedLimbs")) { hero.removedLimbs = [0, 0, 0, 0]; } -- GitLab