From 2f67616c5d3145224e92ae77eb545b1c3c9e9a26 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Thu, 12 Mar 2015 20:26:15 +0000 Subject: [PATCH] unknown_10/11 flags - renamed to the mission status they represent --- code/map_data_render.js | 4 ++-- code/portal_detail.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/map_data_render.js b/code/map_data_render.js index dc1d3eed..72e246d8 100644 --- a/code/map_data_render.js +++ b/code/map_data_render.js @@ -295,8 +295,8 @@ window.Render.prototype.createPortalEntity = function(ent) { image: ent[2][7], title: ent[2][8], ornaments: ent[2][9], - unknown_10: ent[2][10], // temp name until we know what this value does - unknown_11: ent[2][11], // temp name until we know what this value does + mission: ent[2][10], + mission50plus: ent[2][11], }; var dataOptions = { diff --git a/code/portal_detail.js b/code/portal_detail.js index e32a3735..811fcdcb 100644 --- a/code/portal_detail.js +++ b/code/portal_detail.js @@ -67,8 +67,8 @@ var handleResponse = function(guid, data, success) { image: data.result[7], title: data.result[8], ornaments: data.result[9], - unknown_10: data.result[10], // temp name until we know what this value does - unknown_11: data.result[11], // temp name until we know what this value does + mission: data.result[10], + mission50plus: data.result[11], mods: data.result[12].map(parseMod), resonators:data.result[13].map(parseResonator), owner: data.result[14],