Skip to content

Commit

Permalink
score tracking: only transmit score messages when enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
blueminder committed Sep 11, 2023
1 parent 4319077 commit 56c58f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dojo/DojoSession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1675,7 +1675,7 @@ void DojoSession::transmitter_thread()
}
}

if (transmission_wins.size() > 0)
if (config::TransmitScore && transmission_wins.size() > 0)
{
unsigned int player = transmission_wins.front();

Expand Down

0 comments on commit 56c58f1

Please sign in to comment.