Fix player-options and weighted-options failing to validate settings if a payer's name is entirely numeric (#2496)

This commit is contained in:
Chris Wilson
2023-11-24 16:50:32 -05:00
committed by GitHub
parent 15797175c7
commit e64c7b1cbb
2 changed files with 7 additions and 3 deletions

View File

@@ -463,7 +463,7 @@ const exportOptions = () => {
options['description'] = `Generated by https://archipelago.gg with the ${preset} preset.`;
}
if (!options.name || options.name.trim().length === 0) {
if (!options.name || options.name.toString().trim().length === 0) {
return showUserMessage('You must enter a player name!');
}
const yamlText = jsyaml.safeDump(options, { noCompatMode: true }).replaceAll(/'(\d+)':/g, (x, y) => `${y}:`);