From 8b7769d0bfda8d7c035a29c6fabbeef05e355ae2 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Thu, 8 Jan 2015 13:41:19 +0000 Subject: [PATCH] portals-count plugin: update warning to display sooner - niantic now filter portals in the backend more aggressively when zoomed out --- plugins/portal-counts.user.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/portal-counts.user.js b/plugins/portal-counts.user.js index 0e671139..c3c217eb 100644 --- a/plugins/portal-counts.user.js +++ b/plugins/portal-counts.user.js @@ -2,7 +2,7 @@ // @id iitc-plugin-portals-count@yenky // @name IITC plugin: Show total counts of portals // @category Info -// @version 0.1.1.@@DATETIMEVERSION@@ +// @version 0.1.2.@@DATETIMEVERSION@@ // @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @updateURL @@UPDATEURL@@ // @downloadURL @@DOWNLOADURL@@ @@ -183,7 +183,8 @@ window.plugin.portalcounts.getPortals = function (){ } // I've only seen the backend reduce the portals returned for L4+ or further out zoom levels - but this could change - if (getMinPortalLevel() >= 4) { + // UPDATE: now seen for L2+ in dense areas (map zoom level 14 or lower) + if (getMinPortalLevel() >= 2) { counts += '

Warning: Portal counts can be inaccurate when zoomed out

'; }