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

cleanup

parent 737f320b
No related branches found
No related tags found
1 merge request!8404Cheatmode
...@@ -43,16 +43,15 @@ App.Intro.refreshmentChoice = function(options) { ...@@ -43,16 +43,15 @@ App.Intro.refreshmentChoice = function(options) {
}; };
App.Intro.PCNames = function(options) { App.Intro.PCNames = function(options) {
let option;
options.addOption(`Everyone calls you <b>${PlayerName()}.</b>`); options.addOption(`Everyone calls you <b>${PlayerName()}.</b>`);
options.addOption("Your given name is", "slaveName", V.PC).showTextBox(); options.addOption("Your given name is", "slaveName", V.PC).showTextBox();
if (V.PC.slaveSurname === 0) { if (V.PC.slaveSurname === 0) {
option = options.addOption("And no surname", "slaveSurname", V.PC) options.addOption("And no surname", "slaveSurname", V.PC)
.addValue("Add a surname", "Anon") .addValue("Add a surname", "Anon")
.addComment("Surnames cannot be changed during the game outside of special circumstances."); .addComment("Surnames cannot be changed during the game outside of special circumstances.");
} else { } else {
option = options.addOption("And your surname is", "slaveSurname", V.PC).showTextBox() options.addOption("And your surname is", "slaveSurname", V.PC).showTextBox()
.addValue("Go by a single name", 0) .addValue("Go by a single name", 0)
.addComment("Surnames cannot be changed during the game outside of special circumstances."); .addComment("Surnames cannot be changed during the game outside of special circumstances.");
} }
......
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