From a8503d1c26d2e6d2a747f570279f67b73b9bdb89 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Mon, 19 Aug 2024 14:05:13 -0300 Subject: [PATCH] fixed comma on extract role function --- addons/main/functions/extract_data/fn_extract_role.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/main/functions/extract_data/fn_extract_role.sqf b/addons/main/functions/extract_data/fn_extract_role.sqf index a60592b..5771767 100644 --- a/addons/main/functions/extract_data/fn_extract_role.sqf +++ b/addons/main/functions/extract_data/fn_extract_role.sqf @@ -7,6 +7,6 @@ if (vehicle _unit isKindOf "plane") then { _type = "A"; }; -_role = "a-" + _affiliation + "-" + _type +_role = "a-" + _affiliation + "-" + _type; _role \ No newline at end of file