diff --git a/plugins/ap-list.user.js b/plugins/ap-list.user.js index c6f91392..24350f58 100644 --- a/plugins/ap-list.user.js +++ b/plugins/ap-list.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @id iitc-plugin-ap-list@xelio // @name IITC plugin: AP List -// @version 0.4.3.@@DATETIMEVERSION@@ +// @version 0.4.4.@@DATETIMEVERSION@@ // @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @updateURL @@UPDATEURL@@ // @downloadURL @@DOWNLOADURL@@ @@ -349,7 +349,8 @@ window.plugin.apList.isSamePortal = function(a,b) { } window.plugin.apList.portalSide = function(portal) { - return (portal.controllingTeam.team === PLAYER.team) + return (portal.controllingTeam.team === PLAYER.team + || portal.controllingTeam.team === 'NEUTRAL') ? plugin.apList.SIDE_FRIENDLY : plugin.apList.SIDE_ENEMY; }