From: Arun Persaud Date: Sat, 17 May 2008 18:13:55 +0000 (-0700) Subject: BUGFIX: diamond was added twice in defining the sorting order for the cards X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=bc4c2d97e9ed67322757f893f0da8f881b62aee1 BUGFIX: diamond was added twice in defining the sorting order for the cards probably never did any harm, but long anyway Signed-off-by: Arun Persaud --- diff --git a/include/functions.php b/include/functions.php index fdb461e..bbffe00 100644 --- a/include/functions.php +++ b/include/functions.php @@ -572,7 +572,7 @@ function sort_comp($a,$b) $ALL = array(); $ALL = array_merge($CARDS["trump"],$CARDS["diamonds"],$CARDS["clubs"], - $CARDS["hearts"],$CARDS["spades"],$CARDS["diamonds"]); + $CARDS["hearts"],$CARDS["spades"]); return pos_array($a,$ALL)-pos_array($b,$ALL); }