From f17128a1bdf747769c24bfef5309b72b2e1fd03c Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Thu, 13 Feb 2025 20:48:55 -0300 Subject: [PATCH] inverted latlond on takmon --- addons/main/functions/extract_data/fn_extract_role.sqf | 2 +- .../functions/map/fn_convert_to_takistan_montains.sqf | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/addons/main/functions/extract_data/fn_extract_role.sqf b/addons/main/functions/extract_data/fn_extract_role.sqf index 3e4cdec..f50b8f4 100644 --- a/addons/main/functions/extract_data/fn_extract_role.sqf +++ b/addons/main/functions/extract_data/fn_extract_role.sqf @@ -7,7 +7,7 @@ params["_unit"]; private _affiliation = "f"; private _type = "G"; private _role = "a-f-G-U-C-I"; - + switch (side _unit) do { case "WEST": { _affiliation = "f"; diff --git a/addons/main/functions/map/fn_convert_to_takistan_montains.sqf b/addons/main/functions/map/fn_convert_to_takistan_montains.sqf index 4c0df02..77bfa48 100644 --- a/addons/main/functions/map/fn_convert_to_takistan_montains.sqf +++ b/addons/main/functions/map/fn_convert_to_takistan_montains.sqf @@ -8,11 +8,11 @@ _playerLongitude = _playerPosition select 1; _playerMaxLongitude = 6340; _playerMaxLatitude = 6340; -_MapMaxLatitude = 35.042822; -_MapMinLatitude = 34.914006; +_MapMaxLongitude = 35.042822; +_MapMinLongitude = 34.914006; -_MapMaxLongitude = 36.268269; -_MapMinLongitude = 36.111253; +_MapMaxLatitude = 36.268269; +_MapMinLatitude = 36.111253; _LongitudeDifference = _MapMaxLongitude - _MapMinLongitude; _LatitudeDifference = _MapMaxLatitude - _MapMinLatitude;