From e2ced42562672ea0816aca6b139242bdc828b431 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 21 Feb 2011 22:45:32 -0800 Subject: [PATCH] BUGFIX: don't show schweinchen in poverty games during pre-game phase after exchanging cards schweinchen was shown during the pre-game phase --- include/game.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/game.php b/include/game.php index d573503..18d5819 100644 --- a/include/game.php +++ b/include/game.php @@ -79,6 +79,9 @@ if( $gamestatus == 'pre' ) { /* always need to use Schweinchen to figure out for example who has poverty */ $ok=1; + /* unless the gametype is set and we know that we are in poverty were schweinchen is not valid */ + if( in_array( $gametype,array('poverty','dpoverty') )) + $ok=0; } else { -- 2.34.1