X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=include%2Fgame.php;h=03dd259430f448812017daf2f539b8898c5de414;hp=04df1620816beba6d79798ed379e601065555753;hb=57eb21180762813877b849b1180c846a0654fd93;hpb=21f25368b52c73be131cf3ad2d0cb7d1a567eb2a diff --git a/include/game.php b/include/game.php index 04df162..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; } @@ -1994,7 +2002,7 @@ switch($mystatus) $howmanycards = 0; foreach($mycards as $card) { - if($howmanycard>1) + if($howmanycards>1) break; /* display only cards that the player is allowed to play as links, the rest just display normal @@ -2013,10 +2021,11 @@ switch($mystatus) in_array($gametype,array('normal','wedding','trump','silent')) ) ) - continue ; + continue; else $howmanycards++; } + if($howmanycards==1) $howmanycards=1; else @@ -2042,7 +2051,7 @@ switch($mystatus) ) display_card($card,$PREF['cardset']); else - display_link_card($card,$PREF['cardset'],$selected=$howmanycards); + display_link_card($card,$PREF['cardset'],$type='card',$selected=$howmanycards); } } else if($mystatus=='play' )