Compare commits

...

2 Commits

Author SHA1 Message Date
Fangh
8b48dc9462 Merge branch 'main' of https://git.crystalyx.net/GameJams/Snaparazzi 2024-01-28 16:52:21 +01:00
Fangh
0014a2a05d fix somes things 2024-01-28 16:52:13 +01:00
2 changed files with 13 additions and 7 deletions

View File

@ -428,7 +428,7 @@ private void CheckPlayersPropositions()
{
if (string.IsNullOrEmpty(p.photoUrl))
{
Debug.Log($"player {p.owner} has a proposition without an URL");
Debug.Log($"player {p.owner.name} has a proposition without an URL");
allPlayersHasProposedTwoPictures = false;
}
}

View File

@ -133,16 +133,21 @@ private void UpdateVoters()
if (currentQuestion.propositions[0] != null)
{
List<Player> playersThatHasVotedForFirstProposition = new List<Player>();
if (currentQuestion.propositions[0].voters != null)
{
foreach (string playerId in currentQuestion.propositions[0].voters)
{
playersThatHasVotedForFirstProposition.Add(currentPlayers[playerId]);
}
proposition1.UpdateVoters(playersThatHasVotedForFirstProposition);
}
}
if (currentQuestion.propositions[1] != null)
{
List<Player> playersThatHasVotedForSecondProposition = new List<Player>();
if (currentQuestion.propositions[0].voters != null)
{
foreach (string playerId in currentQuestion.propositions[1].voters)
{
playersThatHasVotedForSecondProposition.Add(currentPlayers[playerId]);
@ -150,4 +155,5 @@ private void UpdateVoters()
proposition2.UpdateVoters(playersThatHasVotedForSecondProposition);
}
}
}
}