From 2a458f2e3d01cdfbbb1a3477b04c1e8b31b8e17b Mon Sep 17 00:00:00 2001
From: ulteq <ulteq@web.de>
Date: Tue, 7 Apr 2015 21:03:17 +0200
Subject: [PATCH] Removed Altitude and Latitude negation

---
 addons/weather/functions/fnc_getMapData.sqf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/addons/weather/functions/fnc_getMapData.sqf b/addons/weather/functions/fnc_getMapData.sqf
index 8296364a4e..86a05fb225 100644
--- a/addons/weather/functions/fnc_getMapData.sqf
+++ b/addons/weather/functions/fnc_getMapData.sqf
@@ -11,8 +11,8 @@
  */
 #include "script_component.hpp"
 
-GVAR(Altitude) = -getNumber(configFile >> "CfgWorlds" >> worldName >> "elevationOffset");
-GVAR(Latitude) = -getNumber(configFile >> "CfgWorlds" >> worldName >> "latitude");
+GVAR(Altitude) = getNumber(configFile >> "CfgWorlds" >> worldName >> "elevationOffset");
+GVAR(Latitude) = getNumber(configFile >> "CfgWorlds" >> worldName >> "latitude");
 
 if (worldName in ["Chernarus", "Bootcamp_ACR", "Woodland_ACR", "utes"]) then { GVAR(Latitude) = 50; GVAR(Altitude) = 0; };
 if (worldName in ["Altis", "Stratis"]) then { GVAR(Latitude) = 40; GVAR(Altitude) = 0; };