mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5e396a3793
This reverts commit 4d1a5194ea
.
25 lines
341 B
Plaintext
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;
|
|
};
|