Merge pull request #5 from breunigs/gh-pages

Rebase from bruenigs/ingress-intel-total-conversion
This commit is contained in:
Hollow011
2013-02-20 22:31:08 -08:00
5 changed files with 46 additions and 28 deletions

View File

@ -1,7 +1,7 @@
// ==UserScript==
// @id iitc-plugin-player-tracker@breunigs
// @name iitc: player tracker
// @version 0.2
// @version 0.3
// @namespace https://github.com/breunigs/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/player-tracker.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/player-tracker.user.js
@ -79,7 +79,7 @@ window.plugin.playerTracker.processNewData = function(data) {
// Destroy link messages depend on how the link was originally
// created. Therefore its not clear which portal the player is
// at, so ignore it.
if(markup[1].plain.indexOf('destroyed') !== -1) {
if(markup[1].plain.indexOf('destroyed the Link') !== -1) {
skipThisMessage = true;
return false;
}