diff --git a/stepmania/src/NetworkSyncServer.cpp b/stepmania/src/NetworkSyncServer.cpp index 2439ca7d50..31f216950d 100644 --- a/stepmania/src/NetworkSyncServer.cpp +++ b/stepmania/src/NetworkSyncServer.cpp @@ -288,8 +288,10 @@ void StepManiaLanServer::GameOver(PacketFunctions &Packet, int clientNum) { Reply.WriteNT( playersPtr[x]->options ); for (x = 0; x < NUMBERCLIENTS; x++) - if(Client[x].wasIngame) + if(Client[x].wasIngame) { SendNetPacket(x, Reply); + Client[x].wasIngame = false; + } // SendToAllClients(Reply); }