diff options
author | Arun Persaud <arun@nubati.net> | 2007-10-29 20:29:42 +0100 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-10-29 20:29:42 +0100 |
commit | 34ca8d684f3515232508f4a581828f5f069c323f (patch) | |
tree | 2240edfe6bfd6a643723c4dcd75d83a576c30787 | |
parent | b85e99a9104db0cb831b198d4db0c00957d2ceba (diff) | |
download | e-DoKo-34ca8d684f3515232508f4a581828f5f069c323f.tar.gz e-DoKo-34ca8d684f3515232508f4a581828f5f069c323f.tar.bz2 e-DoKo-34ca8d684f3515232508f4a581828f5f069c323f.zip |
BUGFIX: when playing with both schweinchen
they second fox always became the highest trump, even if the two
foxes where not on the same hand.
Also: every fox led to a comment:"schweinchen".
Both fixed now.
-rw-r--r-- | index.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1120,7 +1120,7 @@ else if(myisset("me")) date_default_timezone_set($zone); /* check if first schweinchen has been played */ - if($r[0] == 19 || $r[0] == 20 ) + if( $GAME["schweinchen"] && ($r[0] == 19 || $r[0] == 20) ) $GAME["schweinchen"]++; /* save card to be able to find the winner of the trick later */ @@ -1230,9 +1230,9 @@ else if(myisset("me")) $playid = DB_play_card($trickid,$handcardid,$sequence); /* check for schweinchen */ - if($card == 19 || $card == 20 ) + if($GAME["schweinchen"] && ($card == 19 || $card == 20) ) { - $GAME["schweinchen"]++; + $GAME["schweinchen"]++; // count how many have been played including this one if($GAME["schweinchen"]==3 && $RULES["schweinchen"]=="second" ) DB_insert_comment("Schweinchen! ",$playid,$myid); if($RULES["schweinchen"]=="both" ) |