2015-04-05 00:17:43 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* none
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
params ["_logic"];
|
2015-04-05 00:17:43 +00:00
|
|
|
|
2015-11-30 16:14:05 +00:00
|
|
|
if (isMultiplayer) exitWith {};
|
2015-04-05 00:17:43 +00:00
|
|
|
|
2015-11-30 16:27:09 +00:00
|
|
|
if (_logic getVariable ["allowconfigurationExport", false]) then {
|
2015-04-05 00:33:45 +00:00
|
|
|
GVAR(serverConfigGeneration) = 1;
|
2015-04-05 00:17:43 +00:00
|
|
|
} else {
|
2015-04-05 00:33:45 +00:00
|
|
|
GVAR(serverConfigGeneration) = 0;
|
2015-04-05 00:17:43 +00:00
|
|
|
};
|