diff --git a/src/arenas/connectFour/act.php b/src/arenas/connectFour/act.php index b3d69ff..f7aed2d 100644 --- a/src/arenas/connectFour/act.php +++ b/src/arenas/connectFour/act.php @@ -132,7 +132,7 @@ switch ($_POST['act']){ //tester si 4 pions allignés diagonale vers la gauche if((!$wins) && ($i > 2) && ($j < 3)){ $wins=true; - for($x = $i-1, $y = $j+1; $x > $i - 4 ; $x++, $y++){ + for($x = $i-1, $y = $j+1; $x > $i - 3 ; $x++, $y++){ if($_SESSION['map'][$y][$x] <> $you){ $wins=false; break;