mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fix errors on game start
This commit is contained in:
parent
5c5a65443b
commit
9bf7b68d76
@ -116,9 +116,8 @@ class CfgVehicles {
|
|||||||
};
|
};
|
||||||
class ACE_Pardon {
|
class ACE_Pardon {
|
||||||
displayName = CSTRING(Pardon);
|
displayName = CSTRING(Pardon);
|
||||||
condition = QUOTE(rating _target < -2000 && {alive _target} && {side group _player == side group _target});
|
|
||||||
condition = QUOTE([ARR_2(_player,_target)] call DFUNC(canPardon));
|
condition = QUOTE([ARR_2(_player,_target)] call DFUNC(canPardon));
|
||||||
condition = QUOTE([ARR_2(_player,_target)] call DFUNC(pardon));
|
statement = QUOTE([ARR_2(_player,_target)] call DFUNC(pardon));
|
||||||
showDisabled = 0;
|
showDisabled = 0;
|
||||||
priority = 2.5;
|
priority = 2.5;
|
||||||
};
|
};
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
ADDON = false;
|
ADDON = false;
|
||||||
|
|
||||||
// interaction menu
|
// interaction menu
|
||||||
PREP(addPassengerActions)
|
PREP(addPassengerActions);
|
||||||
PREP(addPassengersActions);
|
PREP(addPassengersActions);
|
||||||
PREP(getWeaponPos);
|
PREP(getWeaponPos);
|
||||||
PREP(moduleInteraction);
|
PREP(moduleInteraction);
|
||||||
|
Loading…
Reference in New Issue
Block a user