From 0ce98803c27e8570da3cbf7189fc153c8945b5a9 Mon Sep 17 00:00:00 2001 From: MiszczuZPolski <71414303+MiszczuZPolski@users.noreply.github.com> Date: Wed, 9 Oct 2024 17:39:28 +0200 Subject: [PATCH] Misc - Fix bad condition return for fnc_canCheckDogtag.sqf (#616) **When merged this pull request will:** - Title ### IMPORTANT - [Development Guidelines](https://ace3.acemod.org/wiki/development/) are read, understood and applied. - Title of this PR uses our standard template `Component - Add|Fix|Improve|Change|Make|Remove {changes}`. --- addons/misc/functions/fnc_canCheckDogtag.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/misc/functions/fnc_canCheckDogtag.sqf b/addons/misc/functions/fnc_canCheckDogtag.sqf index fd3d9dd17..14ce1235c 100644 --- a/addons/misc/functions/fnc_canCheckDogtag.sqf +++ b/addons/misc/functions/fnc_canCheckDogtag.sqf @@ -23,4 +23,4 @@ if (isNull _target) exitWith {false}; // Check if disabled for faction if ((faction _target) in ACEGVAR(dogtags,disabledFactions)) exitWith {false}; -!(_target call EFUNC(common,isAwake)) +!(_target call ACEFUNC(common,isAwake))