ACE3/addons/optionsmenu/functions/fnc_moduleAllowConfigExport.sqf
2018-01-17 03:36:10 -08:00

25 lines
341 B
Plaintext

/*
* Author: Glowbal
*
*
* Arguments:
* none
*
* Return Value:
* None
*
* Public: No
*/
#include "script_component.hpp"
params ["_logic"];
if (isMultiplayer) exitWith {};
if (_logic getVariable ["allowconfigurationExport", false]) then {
GVAR(serverConfigGeneration) = 1;
} else {
GVAR(serverConfigGeneration) = 0;
};