diff options
author | Arun Persaud <arun@nubati.net> | 2008-05-24 13:33:55 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-05-24 13:33:55 -0700 |
commit | 95b72fab501b778555252b005ea8618a3305ad4c (patch) | |
tree | f67dc4b3929873b0b235dc8681486efc6195b6d8 /include/game.php | |
parent | c956a58882bbfef255af6817d8f21432968ac785 (diff) | |
download | e-DoKo-95b72fab501b778555252b005ea8618a3305ad4c.tar.gz e-DoKo-95b72fab501b778555252b005ea8618a3305ad4c.tar.bz2 e-DoKo-95b72fab501b778555252b005ea8618a3305ad4c.zip |
NEW FEATURE: automatically accept new games
user can set this in the preferences now and won't be asked during a game setup
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/game.php')
-rw-r--r-- | include/game.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/game.php b/include/game.php index 4dbf68f..3540be4 100644 --- a/include/game.php +++ b/include/game.php @@ -142,7 +142,11 @@ display_table(); switch($mystatus) { case 'start': - if( !myisset("in") ) + /* don't ask if user has autosetup set to yest */ + $skip = 0; + if($PREF['autosetup']=='yes') $skip = 1; + + if( !myisset("in") && !$skip) { /* asks the player, if he wants to join the game */ output_check_want_to_play($me); @@ -151,7 +155,7 @@ switch($mystatus) else { /* check the result, if player wants to join, got next stage, else cancel game */ - if($_REQUEST["in"] == "no") + if($_REQUEST["in"] == "no" && !$skip) { /* cancel the game */ $message = "Hello, \n\n". |