From d1d7521ee859f10e99fb3f82e710c8bbeb7c41c5 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 16 Mar 2025 22:19:39 +0500 Subject: Fix the bizzare CRC32 callback I forgot to remove - This fixes bother not working - Separated client and server splashes - Added server splashes --- game/client/play_menu.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'game/client/play_menu.cc') diff --git a/game/client/play_menu.cc b/game/client/play_menu.cc index 4c1d2cd..1c89252 100644 --- a/game/client/play_menu.cc +++ b/game/client/play_menu.cc @@ -195,7 +195,7 @@ static void on_bother_response(const BotherResponseEvent &event) item->num_players = event.num_players; item->max_players = event.max_players; item->motd = event.motd; - item->status = item_status::FAILURE; + item->status = item_status::REACHED; } break; @@ -480,7 +480,6 @@ void play_menu::update_late(void) { for(auto item : servers_deque) { if(item->status == item_status::UNKNOWN) { - spdlog::info("bothering {}", item->name); bother::ping(item->identity, item->hostname.c_str(), item->port); item->status = item_status::PINGING; continue; -- cgit