Skip to content

Commit

Permalink
Added join requests flag to the setup wizard.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dygear committed Feb 5, 2016
1 parent a51f4d3 commit 1d38321
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/prism_interactive.php
Expand Up @@ -65,6 +65,7 @@ public static function queryHosts(array &$vars)
$tmp['flags'] += (self::query('Receive Hot Lap Verification packets?', array('yes', 'no')) == 'yes') ? ISF_HLV : 0;
$tmp['flags'] += (self::query('Receive Auto X packet when loading and unloading track layouts?', array('yes', 'no')) == 'yes') ? ISF_AXM_LOAD : 0;
$tmp['flags'] += (self::query('Receive Auto X packet when editing track layouts?', array('yes', 'no')) == 'yes') ? ISF_AXM_EDIT : 0;
$tmp['flags'] += (self::query('Receive Join Requests?') == 'yes') ? ISF_REQ_JOIN : 0;

// Ask for the alias (hostID) for this connection
while (true)
Expand Down

0 comments on commit 1d38321

Please sign in to comment.