From 278ecf67ee7951ce3d9cd22ed222734ab41af596 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Tue, 1 Oct 2013 04:43:18 +0100 Subject: [PATCH] tweak show-more-portals plugin - move switchoff point one level out, as this seems to result in fewer requests to the niantic servers --- plugins/show-more-portals.user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/show-more-portals.user.js b/plugins/show-more-portals.user.js index 346d690a..0721cbbd 100644 --- a/plugins/show-more-portals.user.js +++ b/plugins/show-more-portals.user.js @@ -2,7 +2,7 @@ // @id iitc-plugin-show-more-portals@jonatkins // @name IITC plugin: Show more portals // @category Tweaks -// @version 0.1.3.@@DATETIMEVERSION@@ +// @version 0.1.4.@@DATETIMEVERSION@@ // @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @updateURL @@UPDATEURL@@ // @downloadURL @@DOWNLOADURL@@ @@ -32,9 +32,9 @@ window.plugin.showMorePortals.setup = function() { window.getPortalDataZoom = function() { var mapZoom = map.getZoom(); - // this plugin only cares about close in zoom levels (zoom 13 and higher) - run the original + // this plugin only cares about close in zoom levels (zoom 12 and higher) - run the original // code when this isn't the case. (this way, multiple zoom-modifying plugins can exist at once - in theory) - if (mapZoom < 13) { + if (mapZoom < 12) { return origGetPortalDataZoom(); }