From fb478fcb0ada25d68f3e5fb8dd34f3405336b23f Mon Sep 17 00:00:00 2001 From: Declan Ireland Date: Wed, 15 Mar 2017 14:15:09 +0000 Subject: [PATCH] Fix for Container Update --- Overrides/ExileServer_object_container_database_update.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Overrides/ExileServer_object_container_database_update.sqf b/Overrides/ExileServer_object_container_database_update.sqf index de93f48..ec7293d 100644 --- a/Overrides/ExileServer_object_container_database_update.sqf +++ b/Overrides/ExileServer_object_container_database_update.sqf @@ -5,7 +5,7 @@ * www.exilemod.com * © 2015 Exile Mod Team * - * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. + * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. */ @@ -18,7 +18,7 @@ if (_containerID > -1) then _vectorDirection = vectorDir _containerObject; _vectorUp = vectorUp _containerObject; _territoryFlag = _containerObject call ExileClient_util_world_getTerritoryAtPosition; - _territoryID = if (isNull _territoryFlag) then { 'NULL' } else { _territoryFlag getVariable ["ExileDatabaseID", 'NULL']}; + _territoryID = if (isNull _territoryFlag) then { '' } else { _territoryFlag getVariable ["ExileDatabaseID", '']}; _containerObject setVariable ["ExileTerritoryID", _territoryID]; _data = [ @@ -26,7 +26,7 @@ if (_containerID > -1) then _position select 0, _position select 1, _position select 2, - _vectorDirection select 0, + _vectorDirection select 0, _vectorDirection select 1, _vectorDirection select 2, _vectorUp select 0,