mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ee0e947611
* Use `ace_common_fnc_isAwake` where possible * Revert bad change
24 lines
453 B
Plaintext
24 lines
453 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Checks if the unit can join a group
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Target <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Able to join a group <BOOL>
|
|
*
|
|
* Example:
|
|
* [player, target] call ace_interaction_fnc_canJoinGroup
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_target"];
|
|
|
|
_target call EFUNC(common,isAwake)
|
|
&& {side group _unit == side group _target}
|
|
&& {group _unit != group _target} // return
|