changes to make:
private void PlayerReadyUpdate(bool oldValue, bool newValue)
{
// This only fires on clients, including host client
// Mirror has already set Ready to newValue
LobbyController.Instance.UpdatePlayerList();
}
[Command]
private void CmdSetPlayerReady()
{
// Change the SyncVar value
Ready = !Ready;
}