From 57eb21180762813877b849b1180c846a0654fd93 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 21 Nov 2010 00:42:28 -0800 Subject: [PATCH] fixe placement of comment box in pre-game phase it now always shows at the bottom of the page as it should ;) --- include/game.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/game.php b/include/game.php index cd77bf3..03dd259 100644 --- a/include/game.php +++ b/include/game.php @@ -326,6 +326,7 @@ switch($mystatus) { /* asks the player, if he wants to join the game */ output_check_want_to_play($me); + echo '
'; break; } else @@ -520,6 +521,7 @@ switch($mystatus) /* move on to the next stage*/ DB_set_hand_status_by_hash($me,'check'); + $mystatus='check'; }; }; @@ -834,6 +836,12 @@ switch($mystatus) } } echo "\n"; + /* show cards */ + echo '
'._('Your cards are').":
\n"; + foreach($mycards as $card) + display_card($card,$PREF['cardset']); + echo "
\n"; + break; } -- 2.34.1