mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
367 B
Plaintext
26 lines
367 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
*
|
|
*
|
|
* Arguments:
|
|
* none
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_logic"];
|
|
_logic = _this select 0;
|
|
|
|
if (isMultiplayer) exitwith {};
|
|
|
|
if (_logic getvariable ["allowconfigurationExport", false]) then {
|
|
GVAR(serverConfigGeneration) = 1;
|
|
} else {
|
|
GVAR(serverConfigGeneration) = 0;
|
|
};
|