Skip to content
Snippets Groups Projects
Commit b1417832 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

revert so I can cap

parent 13429527
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ App.Intro.pcAppearance = function(options) { ...@@ -36,7 +36,7 @@ App.Intro.pcAppearance = function(options) {
function getEyeColors() { function getEyeColors() {
const array = []; const array = [];
for (const color of App.Medicine.Modification.eyeColor.map(color => color.value)) { for (const color of App.Medicine.Modification.eyeColor.map(color => color.value)) {
array.push([color, color]); array.push([capFirstChar(color), color]);
} }
return array; return array;
} }
...@@ -44,7 +44,7 @@ App.Intro.pcAppearance = function(options) { ...@@ -44,7 +44,7 @@ App.Intro.pcAppearance = function(options) {
function getHairColors() { function getHairColors() {
const array = []; const array = [];
for (const color of App.Medicine.Modification.Color.Primary.map(color => color.value)) { for (const color of App.Medicine.Modification.Color.Primary.map(color => color.value)) {
array.push([color, color]); array.push([capFirstChar(color), color]);
} }
return array; return array;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment