void MajPlayerList()
    {
        Menu.MajPlayerList(PlayerConnList.ToArray(), PlayerIdList.ToArray());

        string AffText = "";

        for (int i = 0; i < PlayerConnList.Count; i++)
        {
            AffText += "Joueur " + (i + 1) + " - " + "ID: " + PlayerIdList[i] + " - " + PlayerConnList[i].ToString() + '\n' + '\n';

            /*if (PlayerConn.Value.isReady) AffText += "PrĂȘt" + '\n';
             * else AffText += "En attente..." + '\n';*/
        }
        Menu.AffPlayerList.text = AffText;
    }