diff options
author | arun <arun@nubati.net> | 2007-04-10 08:58:23 +0000 |
---|---|---|
committer | arun <arun> | 2007-04-10 08:58:23 +0000 |
commit | 4b94fd36ed89060493ac80d89db3c1e304b13623 (patch) | |
tree | 6fadfc070a2af690a96b52c2ce2f063d80f51c6b /index.php | |
parent | a0b3efd697ed19fe2bf204868ab5920e4af5d467 (diff) | |
download | e-DoKo-4b94fd36ed89060493ac80d89db3c1e304b13623.tar.gz e-DoKo-4b94fd36ed89060493ac80d89db3c1e304b13623.tar.bz2 e-DoKo-4b94fd36ed89060493ac80d89db3c1e304b13623.zip |
removed one debug message; added timestamp update for game when playing a card
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -790,9 +790,11 @@ else if(myisset("me")) /* mark card as played */ mysql_query("UPDATE Hand_Card SET played='true' WHERE hand_id='$handid' AND card_id=". DB_quote_smart($card)); - + /* update Game timestamp */ + DB_update_game_timestamp($gameid); + /* check for schweinchen */ - echo "schweinchen = ".$GAME["schweinchen"]." --$card-<br />"; + //echo "schweinchen = ".$GAME["schweinchen"]." --$card-<br />"; if($card == 19 || $card == 20 ) { $GAME["schweinchen"]++; |