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

add selection of nationality from data

parent fb715193
No related branches found
No related tags found
No related merge requests found
App.Intro.pcAppearance = function(options) {
options.addOption("Your nationality is", "nationality", V.PC).showTextBox()
.addValueList(Object.keys(App.Data.SlaveSummary.short.nationality))
.addComment("For best result capitalize it.");
options.addOption("Your race is", "race", V.PC).showTextBox()
......
......@@ -489,7 +489,8 @@
<<run _option.addComment(`<span class=warning>${_comment}</span>`)>>
<</if>>
<<run _options.addOption("$His nationality is", "nationality", $activeSlave).showTextBox()>>
<<run _options.addOption("$His nationality is", "nationality", $activeSlave).showTextBox()
.addValueList(Object.keys(App.Data.SlaveSummary.short.nationality))>>
<<if $seeRace == 1>>
<<run _options.addOption("$His ethnicity is", "race", $activeSlave).showTextBox()
......
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