remove custom login options from proxy options menu

This commit is contained in:
Martin Michelsen
2022-12-21 22:40:30 -08:00
parent 7c98f42722
commit f2751a4e49
6 changed files with 18 additions and 7 deletions
+5
View File
@@ -159,6 +159,11 @@ void populate_state_from_config(shared_ptr<ServerState> s,
} catch (const out_of_range&) {
s->proxy_allow_save_files = true;
}
try {
s->proxy_enable_login_options = d.at("ProxyEnableLoginOptions")->as_bool();
} catch (const out_of_range&) {
s->proxy_enable_login_options = false;
}
try {
s->ep3_behavior_flags = d.at("Episode3BehaviorFlags")->as_int();