ACE3/addons/interaction/functions/fnc_pardon.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

22 lines
343 B
Plaintext

/*
* Author: commy2
* Unit pardons target unit.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Target <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bob, kevin] call ACE_interaction_fnc_pardon
*
* Public: No
*/
#include "script_component.hpp"
params ["", "_target"];
[QGVAR(pardon), [_target], [_target]] call CBA_fnc_targetEvent;