From 8e280a14649550fc681db0aabacbdbb975d7b64f Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 22 Mar 2024 22:25:14 -0700 Subject: [PATCH] fix wrong type in default ep3 behavior flags --- src/ServerState.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ServerState.cc b/src/ServerState.cc index 19641837..a18cb4bf 100644 --- a/src/ServerState.cc +++ b/src/ServerState.cc @@ -758,7 +758,7 @@ void ServerState::load_config_early() { } this->ep3_final_round_meseta_bonus = this->config_json->get_int("Episode3FinalRoundMesetaBonus", 300); this->ep3_jukebox_is_free = this->config_json->get_bool("Episode3JukeboxIsFree", false); - this->ep3_behavior_flags = this->config_json->get_int("Episode3BehaviorFlags", false); + this->ep3_behavior_flags = this->config_json->get_int("Episode3BehaviorFlags", 0); this->ep3_card_auction_points = this->config_json->get_int("CardAuctionPoints", 0); this->hide_download_commands = this->config_json->get_bool("HideDownloadCommands", true); this->proxy_allow_save_files = this->config_json->get_bool("ProxyAllowSaveFiles", true);