mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
convert log macros to cba versions (#4282)
* convert log macros to cba versions * Add changes to AB * remove obsolete macro
This commit is contained in:
@ -20,10 +20,10 @@
|
||||
params ["_unit", "_soundClass"];
|
||||
|
||||
if (isNull _unit) exitWith {
|
||||
ACE_LOGERROR_1("unit does not exist [%1]",_unit);
|
||||
ERROR_1("unit does not exist [%1]",_unit);
|
||||
};
|
||||
if (!alive _unit) exitWith {
|
||||
ACE_LOGERROR_1("unit is not alive [%1]",_unit);
|
||||
ERROR_1("unit is not alive [%1]",_unit);
|
||||
};
|
||||
|
||||
if (_unit getVariable [QGVAR(isUsingHeadphones), false] && {_unit == ACE_player}) then {
|
||||
|
Reference in New Issue
Block a user