From 58c7d82be7c28d3d298ee7b8c1360b15500beee1 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Mon, 24 Feb 2025 20:22:02 -0300 Subject: [PATCH] fixed worldname conversion on chernarus submaps --- addons/main/functions/map/fn_convert_location.sqf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/addons/main/functions/map/fn_convert_location.sqf b/addons/main/functions/map/fn_convert_location.sqf index 6ede472..6642dd2 100644 --- a/addons/main/functions/map/fn_convert_location.sqf +++ b/addons/main/functions/map/fn_convert_location.sqf @@ -32,9 +32,18 @@ switch (toLower worldName) do { case "bootcamp_acr": { _realLocation = _position call armatak_fnc_convert_to_bukovina; }; + case "woodland_acr": { + _realLocation = _position call armatak_fnc_convert_to_bystrika; + }; case "mountains_acr": { _realLocation = _position call armatak_fnc_convert_to_takistan_montains; }; + case "sara_dbe1": { + _realLocation = _position call armatak_fnc_convert_to_united_sahrani; + }; + case "saralite": { + _realLocation = _position call armatak_fnc_convert_to_united_sahrani; + }; default { _warning = format ["ARMATAK
%1", "Unsupported Map"]; [[_warning, 1.5]] call CBA_fnc_notify;