From 10e5dc4708e4dee1128655dfd34c65fe32507f6b Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sat, 25 Nov 2023 12:21:32 -0800 Subject: [PATCH] clear arrow color when changing lobbies --- src/Lobby.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Lobby.cc b/src/Lobby.cc index 9c3b009a..ee82c33c 100644 --- a/src/Lobby.cc +++ b/src/Lobby.cc @@ -198,6 +198,7 @@ void Lobby::add_client(shared_ptr c, ssize_t required_client_id) { c->lobby_client_id = index; c->lobby = this->weak_from_this(); + c->lobby_arrow_color = 0; // If there's no one else in the lobby, set the leader id as well size_t leader_index;