fix: algo generatePrompts

This commit is contained in:
Michel Roux 2024-01-28 03:06:28 +01:00
parent 3a07cbf9b7
commit ba9f081894

View File

@ -302,7 +302,9 @@ public void GeneratePrompts()
creationDate = DateTime.Now.ToOADate()
});
for (int i = 1; i < fullPlayers.Count(); i++)
fullPlayers.RemoveAt(0);
for (int i = 0; i < fullPlayers.Count(); i++)
{
Player secondPlayer = fullPlayers[i];