Fix macro argument counts (#6962)

This commit is contained in:
Dedmen Miller 2019-04-27 15:05:29 +02:00 committed by Magnetar
parent cc22e95012
commit 50e3d8b3fe
3 changed files with 3 additions and 3 deletions

View File

@ -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 {

View File

@ -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";

View File

@ -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", "", [""]],