From 1d38321f6fb84e4ce6732663329cc00528d2eaf5 Mon Sep 17 00:00:00 2001 From: Mark Tomlin Date: Fri, 5 Feb 2016 03:53:50 -0500 Subject: [PATCH] Added join requests flag to the setup wizard. --- modules/prism_interactive.php | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/prism_interactive.php b/modules/prism_interactive.php index 248c59a..85f63f2 100644 --- a/modules/prism_interactive.php +++ b/modules/prism_interactive.php @@ -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)