Skip to content
Snippets Groups Projects
Commit 2bdb4219 authored by Nongma SORGHO's avatar Nongma SORGHO
Browse files

(fix: all) 4 players test

parent 52326389
Branches
Tags
1 merge request!53(fix: all) 4 players test
......@@ -75,6 +75,8 @@ public class Draggable : MonoBehaviour
// clic sur un pion d'un autre joueur
// Debug.Log("id joueur pion: " + pion.get_ID_joueur() + ", id tour dans client: " + client.get_ID_tour());
int idCase;
if (client.id_Joueur_In_Game - 1 != client.get_ID_tour()) { return; }
if (pion.get_ID_joueur() != client.get_ID_tour() + 1)
{
......
......@@ -205,7 +205,7 @@ public class Joueur : MonoBehaviour
{
// if it is not this player's turn disable the dice button
float[] timerInfo = client.getTimerInfo(ID_joueur-1);
if (client.id_Joueur_In_Game - 1 != client.get_ID_tour() || hasChosen || timerInfo[0] == 2.0f)
if ((client.id_Joueur_In_Game - 1 != client.get_ID_tour() && client.get_ID_tour() + 1 != ID_joueur) || hasChosen || timerInfo[0] == 2.0f)
{
choiceButton.interactable = false;
}
......@@ -213,7 +213,7 @@ public class Joueur : MonoBehaviour
{
choiceButton.interactable = true;
}
if (client.id_Joueur_In_Game - 1 == client.get_ID_tour() && gameStarted)
if (client.id_Joueur_In_Game - 1 == client.get_ID_tour() && gameStarted && client.get_ID_tour() + 1 == ID_joueur)
{
choiceButton.gameObject.SetActive(true);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment