ACE3/addons/sitting/functions/fnc_moduleInit.sqf
2015-08-26 15:32:54 +02:00

26 lines
454 B
Plaintext

/*
* Author: Jonpas
* Initializes the Sitting module.
*
* Arguments:
* 0: The module logic <LOGIC>
* 1: Units <ARRAY>
* 2: Activated <BOOL>
*
* Return Value:
* None
*
* Public: No
*/
#include "script_component.hpp"
if !(isServer) exitWith {};
params ["_logic", "_units", "_activated"];
if (!_activated) exitWith {};
[_logic, QGVAR(enable), "enable"] call EFUNC(common,readSettingFromModule);
ACE_LOGINFO("Sitting Module Initialized.");