From bc4c2d97e9ed67322757f893f0da8f881b62aee1 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 17 May 2008 11:13:55 -0700 Subject: [PATCH] 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 --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.25.1