mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Medical Treatment - Fix invalid usage of ARR macro (#7933)
This commit is contained in:
@ -287,14 +287,14 @@ class CfgVehicles {
|
|||||||
class ACE_OpenLid {
|
class ACE_OpenLid {
|
||||||
displayName = ECSTRING(medical,openLid);
|
displayName = ECSTRING(medical,openLid);
|
||||||
condition = QUOTE(alive _target && {_target animationPhase 'Cover' < 0.5});
|
condition = QUOTE(alive _target && {_target animationPhase 'Cover' < 0.5});
|
||||||
statement = QUOTE(_target animate ARR_2(['Cover',1]));
|
statement = QUOTE(_target animate [ARR_2('Cover',1)]);
|
||||||
showDisabled = 0;
|
showDisabled = 0;
|
||||||
priority = -1;
|
priority = -1;
|
||||||
};
|
};
|
||||||
class ACE_CloseLid {
|
class ACE_CloseLid {
|
||||||
displayName = ECSTRING(medical,closeLid);
|
displayName = ECSTRING(medical,closeLid);
|
||||||
condition = QUOTE(alive _target && {_target animationPhase 'Cover' >= 0.5});
|
condition = QUOTE(alive _target && {_target animationPhase 'Cover' >= 0.5});
|
||||||
statement = QUOTE(_target animate ARR_2(['Cover',0]));
|
statement = QUOTE(_target animate [ARR_2('Cover',0)]);
|
||||||
showDisabled = 0;
|
showDisabled = 0;
|
||||||
priority = -1;
|
priority = -1;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user