mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Common - Add isNotUnconscious canInteractWith condition
This commit is contained in:
@ -387,6 +387,11 @@ addMissionEventHandler ["PlayerViewChanged", {
|
|||||||
|
|
||||||
["isNotInZeus", {isNull curatorCamera}] call FUNC(addCanInteractWithCondition);
|
["isNotInZeus", {isNull curatorCamera}] call FUNC(addCanInteractWithCondition);
|
||||||
|
|
||||||
|
["isNotUnconscious", {
|
||||||
|
params ["_unit"];
|
||||||
|
lifeState _unit != "INCAPACITATED"
|
||||||
|
}] call FUNC(addCanInteractWithCondition);
|
||||||
|
|
||||||
//////////////////////////////////////////////////
|
//////////////////////////////////////////////////
|
||||||
// Set up reload mutex
|
// Set up reload mutex
|
||||||
//////////////////////////////////////////////////
|
//////////////////////////////////////////////////
|
||||||
|
Reference in New Issue
Block a user