first pass of fixes for 2014-05-23
still need to fix name changes in response for portal details
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
// @id iitc-plugin-guess-player-levels@breunigs
|
||||
// @name IITC plugin: guess player level
|
||||
// @category Info
|
||||
// @version 0.5.2.@@DATETIMEVERSION@@
|
||||
// @version 0.5.3.@@DATETIMEVERSION@@
|
||||
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
|
||||
// @updateURL @@UPDATEURL@@
|
||||
// @downloadURL @@DOWNLOADURL@@
|
||||
@ -189,7 +189,7 @@ window.plugin.guessPlayerLevels.extractChatData = function(data) {
|
||||
attackData[nick][timestamp].push(portal);
|
||||
}
|
||||
|
||||
data.raw.result.forEach(function(msg) {
|
||||
data.raw.success.forEach(function(msg) {
|
||||
var plext = msg[2].plext;
|
||||
|
||||
// search for "x deployed an Ly Resonator on z"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// @id iitc-plugin-player-tracker@breunigs
|
||||
// @name IITC Plugin: Player tracker
|
||||
// @category Layer
|
||||
// @version 0.10.2.@@DATETIMEVERSION@@
|
||||
// @version 0.10.3.@@DATETIMEVERSION@@
|
||||
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
|
||||
// @updateURL @@UPDATEURL@@
|
||||
// @downloadURL @@DOWNLOADURL@@
|
||||
@ -144,7 +144,7 @@ window.plugin.playerTracker.eventHasLatLng = function(ev, lat, lng) {
|
||||
|
||||
window.plugin.playerTracker.processNewData = function(data) {
|
||||
var limit = plugin.playerTracker.getLimit();
|
||||
$.each(data.raw.result, function(ind, json) {
|
||||
$.each(data.raw.success, function(ind, json) {
|
||||
// skip old data
|
||||
if(json[1] < limit) return true;
|
||||
|
||||
|
Reference in New Issue
Block a user