Skip to content
Snippets Groups Projects
Commit 000e3314 authored by LAMINO-HARO FERNANDO-JOEL's avatar LAMINO-HARO FERNANDO-JOEL
Browse files

Merge branch 'feat/v2.2' into 'dev'

logs to fix green and yellow pawns entering issues

See merge request !64
parents 93d33027 ef98614e
Branches
Tags
1 merge request!64logs to fix green and yellow pawns entering issues
......@@ -232,6 +232,7 @@ public class Plateau : MonoBehaviour
*/
public void move_pion(Pion p, De d)
{
UnityEngine.Debug.Log("move_pion: stats avant move id_j: "+p.get_ID_joueur()+" status: "+p.get_status()+" pos: "+p.get_case().get_id_Case());
Case tmp; //case temporaire pour recuperer la nouvelle case du pion
if (p.isBougeable())
......@@ -349,6 +350,7 @@ public class Plateau : MonoBehaviour
{ //si le pion n'est pas bougeable c'est qu'il y a une erreur
Debug.Log("ERROR move_pion: bougeable");
}
UnityEngine.Debug.Log("move_pion: stats avant move id_j: "+p.get_ID_joueur()+" status: "+p.get_status()+" pos: "+p.get_case().get_id_Case());
}
/**
......@@ -513,4 +515,4 @@ public class Plateau : MonoBehaviour
Debug.Log("4e: " + clas[3]+" pts: "+pts[3,0]);
return clas;
}
}
}
\ No newline at end of file
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