diff --git a/stupidIATron.php b/stupidIATron.php index 54dbebe..e5f4abb 100644 --- a/stupidIATron.php +++ b/stupidIATron.php @@ -30,16 +30,16 @@ switch($params['action']){ list($x,$y) = explode(",",$myCoords); $availablesDirs = array(); - if in_array(($x + 1).",".$y, $busyCells){ + if (in_array(($x + 1).",".$y, $busyCells)){ $availablesDirs[] = "x+"; } - if in_array(($x -1 ).",".$y, $busyCells){ + if (in_array(($x -1 ).",".$y, $busyCells)){ $availablesDirs[] = "x-"; } - if in_array($x.",".($y + 1), $busyCells){ + if (in_array($x.",".($y + 1), $busyCells)){ $availablesDirs[] = "y+"; } - if in_array($x.",".($y - 1), $busyCells){ + if (in_array($x.",".($y - 1), $busyCells)){ $availablesDirs[] = "y-"; }