mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
2f54cfadbc
Code cleanup of Hearing module
26 lines
770 B
Plaintext
26 lines
770 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Initializes the Hearing module.
|
|
*
|
|
* Arguments:
|
|
* Whatever the module provides. (I dunno.)
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*/
|
|
#include "script_component.hpp"
|
|
params ["_logic", "_units", "_activated"];
|
|
|
|
if !(_activated) exitWith {};
|
|
|
|
[_logic, QGVAR(enableCombatDeafness), "EnableCombatDeafness"] call EFUNC(common,readSettingFromModule);
|
|
|
|
// Do Not Force - read module setting only non-default is set due to using SCALAR
|
|
if ((_logic getVariable "DisableEarRinging") != -1) then {
|
|
[_logic, QGVAR(DisableEarRinging), "DisableEarRinging"] call EFUNC(common,readSettingFromModule);
|
|
};
|
|
|
|
[_logic, QGVAR(enabledForZeusUnits), "enabledForZeusUnits"] call EFUNC(common,readSettingFromModule);
|
|
|
|
diag_log text "[ACE]: Hearing Module Initialized.";
|