From faa11c7f79d77ac09219b98096d68ad90054ba86 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 23 Sep 2013 21:17:01 -0700 Subject: [PATCH] BUGFIX: vorbehalte of all players were visible a player shouldn't know the vorbehalte of players behind him until he finished his setup. * fixed change of internal variable mystatus from init to check * fixed who can see vorbehalte depending on mystatus --- include/game.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/game.php b/include/game.php index 86fd53c..65d178b 100644 --- a/include/game.php +++ b/include/game.php @@ -518,6 +518,7 @@ switch($mystatus) */ DB_set_hand_status_by_hash($me,'init'); + $mystatus='init'; /* check if everyone has reached this stage, set player in game-table to the next player */ $userids = DB_get_all_userid_by_gameid($gameid); @@ -2089,17 +2090,21 @@ switch($mystatus) * this outputs status of healthy, * * sick, etc during pre-game phase * **********************************/ + +$posmax=5; // if user is still in init, we only show vorbehalte from players before him, otherwise all of them + switch($mystatus) { case 'start': break; case 'init': + $posmax=$mypos; case 'check': /* output sickness of other playes, in case they already selected and are sitting in front of the current player */ echo "\n".'
'."\n"; echo '
'."\n"; - for($pos=1;$pos<5;$pos++) + for($pos=1;$pos<$posmax;$pos++) { $usersick = DB_get_sickness_by_pos_and_gameid($pos,$gameid); $userid = DB_get_userid('gameid-position',$gameid,$pos); -- 2.25.1