From: Arun Persaud Date: Wed, 4 Jul 2007 17:44:52 +0000 (-0700) Subject: BUGFIX: cards didn't show up anymore at the end of the game X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=6adb80a6c530cc68eabafc64db8cbbb34b3614d6 BUGFIX: cards didn't show up anymore at the end of the game forgot to check in an if-clause if the player was still playing or if the game was already over --- diff --git a/index.php b/index.php index a41158e..bae38d4 100644 --- a/index.php +++ b/index.php @@ -1532,7 +1532,7 @@ else if(myisset("me")) $mycards = mysort($mycards,$gametype); echo "
\n"; - if($myturn && !myisset("card")) + if($myturn && !myisset("card") && $mystatus=='play' ) { echo "Hello ".$myname.", it's your turn!
\n"; echo "Your cards are:
\n";