diff options
author | Arun Persaud <arun@nubati.net> | 2007-06-17 18:55:34 +0200 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-06-17 18:55:34 +0200 |
commit | 44adf43ccb058fb76e7bdbb18917ca86a7f7ec29 (patch) | |
tree | d1bcf0e963337d8280bcef54418c93152653e920 /db.php | |
parent | 7c54cc81a26bb8a58a0b5ea4dbf4e819fba65d11 (diff) | |
download | e-DoKo-44adf43ccb058fb76e7bdbb18917ca86a7f7ec29.tar.gz e-DoKo-44adf43ccb058fb76e7bdbb18917ca86a7f7ec29.tar.bz2 e-DoKo-44adf43ccb058fb76e7bdbb18917ca86a7f7ec29.zip |
NEW FEATURE: reuse random numbers from old games
random numbers generated for old games are reused in case none
of the players were in that old game. Will be interesting how different
people play with the same hand ;)
Diffstat (limited to 'db.php')
-rw-r--r-- | db.php | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -764,4 +764,19 @@ function DB_get_PREF($myid) return; } +function DB_get_unused_randomnumbers($userstr) +{ + $queryresult = mysql_query("SELECT randomnumbers,Game.id FROM Game ". + " LEFT JOIN Hand ON Hand.game_id=Game.id ". + " AND user_id not in (".$userstr.")". + " GROUP BY Game.id ". + " HAVING num=4"); + + $r = mysql_fetch_array($queryresult,MYSQL_NUM); + if($r) + return $r[0]; + else + return ""; +} + ?>
\ No newline at end of file |