mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
24 lines
551 B
Plaintext
24 lines
551 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Applies speaker changes on init post. Used because setSpeaker is broken on init.
|
|
*
|
|
* Arguments:
|
|
* 0: unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [bob] call ace_common_fnc_muteUnitHandleInitPost
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
// setSpeaker gets overwritten after init on remote units; if unit is muted, setSpeaker again
|
|
if (count (_unit getVariable [QGVAR(muteUnitReasons), []]) > 0) then {
|
|
[QGVAR(setSpeaker), [_unit, "ACE_NoVoice"]] call CBA_fnc_localEvent;
|
|
};
|