mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix macro argument counts (#6962)
This commit is contained in:
parent
cc22e95012
commit
50e3d8b3fe
@ -21,7 +21,7 @@
|
||||
*/
|
||||
|
||||
params ["_unit", "_animation", ["_priority", 0]];
|
||||
TRACE_4("params",_unit,_animation,_priority);
|
||||
TRACE_3("params",_unit,_animation,_priority);
|
||||
|
||||
// switchMove "" no longer works in dev 1.37
|
||||
if (_animation == "") then {
|
||||
|
@ -19,7 +19,7 @@
|
||||
*/
|
||||
|
||||
params ["_unit", "_bodyPart", "_damage", "_typeOfDamage"];
|
||||
TRACE_5("start",_unit,_bodyPart,_damage,_typeOfDamage);
|
||||
TRACE_4("start",_unit,_bodyPart,_damage,_typeOfDamage);
|
||||
|
||||
if (_typeOfDamage isEqualTo "") then {
|
||||
_typeOfDamage = "unknown";
|
||||
|
@ -65,7 +65,7 @@ private _createLitter = {
|
||||
|
||||
{
|
||||
if (count _x < MIN_ENTRIES_LITTER_CONFIG) then {
|
||||
WARNING_2("Wrong litter array: %1",_x);
|
||||
WARNING_1("Wrong litter array: %1",_x);
|
||||
} else {
|
||||
_x params [
|
||||
["_selection", "", [""]],
|
||||
|
Loading…
Reference in New Issue
Block a user