From bf474ba9e1391d0930c9df2755087d31630c1857 Mon Sep 17 00:00:00 2001 From: HPotato <12221-hpotato@users.noreply.gitgud.io> Date: Sat, 9 Jan 2021 01:53:34 -0800 Subject: [PATCH] Apply 2 suggestion(s) to 1 file(s) --- src/js/rulesAssistantOptions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js index aeff42da5c0..c71f8ae59cc 100644 --- a/src/js/rulesAssistantOptions.js +++ b/src/js/rulesAssistantOptions.js @@ -2139,7 +2139,7 @@ App.RA.options = (function() { ]; pairs.forEach(pair => this.appendChild(new OptionsItem(...pair))); - if (V.experimental.raGrowthExpr !== 1) { + if (!V.experimental.raGrowthExpr) { this.breasts = new BreastGrowthList(); this.butts = new ButtGrowthList(); this.lips = new LipGrowthList(); @@ -2151,7 +2151,7 @@ App.RA.options = (function() { this.sublists.push(this.breasts, this.butts, this.lips); if (V.seeDicks > 0 || V.makeDicks > 0) { - if (V.experimental.raGrowthExpr !== 1) { + if (!V.experimental.raGrowthExpr) { this.dicks = new DickGrowthList(); this.balls = new BallGrowthList(); } else { -- GitLab