From ca6c0a119bf8ba8220a7c2c7a51821bb3fd86e52 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Fri, 27 Nov 2020 21:09:17 -0500 Subject: [PATCH] fixes --- src/events/intro/introSummary.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/events/intro/introSummary.js b/src/events/intro/introSummary.js index 83af801b3f2..30f42f6e963 100644 --- a/src/events/intro/introSummary.js +++ b/src/events/intro/introSummary.js @@ -131,7 +131,6 @@ App.Intro.summary = function() { const el = new DocumentFragment(); App.UI.DOM.appendNewElement("div", el, `You may review your settings before clicking "Continue" to begin.`); - const linkArray = []; linkArray.push( App.UI.DOM.link( @@ -329,6 +328,8 @@ App.Intro.summary = function() { .addValue("Default", 2, () => V.difficultySwitch = 1) .addValue("Hard", 3, () => V.difficultySwitch = 1); + el.append(_options.render()); + _options = new App.UI.OptionsGroup(); /* Not functional yet All the things you need to run your arcology are getting more expensive if (V.incomeMod === 0) { -- GitLab