From 6adb80a6c530cc68eabafc64db8cbbb34b3614d6 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 4 Jul 2007 10:44:52 -0700 Subject: [PATCH] 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 --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.34.1