diff --git a/src/events/intro/pcAppearance.js b/src/events/intro/pcAppearance.js index 440adddc2bb3c6f6498e02aba3abc013041d8969..96211ae954bb194528beab362cd7a1d8397d4565 100644 --- a/src/events/intro/pcAppearance.js +++ b/src/events/intro/pcAppearance.js @@ -3,7 +3,7 @@ App.Intro.pcAppearance = function(options) { .addComment("For best result capitalize it."); options.addOption("Your race is", "race", V.PC).showTextBox() - .addValueList(getRaces()); + .addValueList(Array.from(setup.filterRaces, (k => [k, k.toLowerCase()]))); options.addOption("Your skin tone is", "skin", V.PC).showTextBox() .addValueList(makeAList(setup.naturalSkins)); @@ -17,19 +17,7 @@ App.Intro.pcAppearance = function(options) { options.addOption("Your hair is", "hColor", V.PC).showTextBox() .addValueList(makeAList(App.Medicine.Modification.Color.Primary.map(color => color.value))); - function getRaces() { - const array = []; - for (const race of setup.filterRaces) { - array.push([race, race.toLowerCase()]); - } - return array; - } - function makeAList(iterable) { - const array = []; - for (const item of iterable) { - array.push([capFirstChar(item), item]); - } - return array; + return Array.from(iterable, (k => [capFirstChar(k), k])); } };