[WebHost] weighted-settings: Accept new options in switch for option type

This commit is contained in:
Chris Wilson 2022-01-11 18:00:03 -05:00
parent 4e674e0380
commit 01d6735803
1 changed files with 12 additions and 0 deletions

View File

@ -467,6 +467,18 @@ const buildWeightedSettingsDiv = (game, settings) => {
settingWrapper.appendChild(rangeTable);
break;
case 'items-list':
// TODO
break;
case 'locations-list':
// TODO
break;
case 'custom-list':
// TODO
break;
default:
console.error(`Unknown setting type for ${game} setting ${setting}: ${settings[setting].type}`);
return;