Skip to content

Commit

Permalink
Fix macro argument counts (#6962)
Browse files Browse the repository at this point in the history
  • Loading branch information
dedmen authored and TheMagnetar committed Apr 27, 2019
1 parent cc22e95 commit 50e3d8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/common/functions/fnc_doAnimation.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion addons/medical_damage/functions/fnc_woundsHandler.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion addons/medical_treatment/functions/fnc_litterCreate.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -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", "", [""]],
Expand Down

0 comments on commit 50e3d8b

Please sign in to comment.