mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-13 05:54:40 +01:00
Fix duplicate IDs in ids-for-ip list
This commit is contained in:
parent
87be292538
commit
dc7efc2642
@ -321,12 +321,10 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
|
||||
ids_by_ip.put(ip, ids);
|
||||
}
|
||||
String pid = p.getName();
|
||||
/* See if not first in list */
|
||||
int idx = ids.indexOf(pid);
|
||||
if(idx > 0) {
|
||||
ids.remove(idx);
|
||||
if(ids.indexOf(pid) != 0) {
|
||||
ids.remove(pid); /* Remove from list */
|
||||
ids.addFirst(pid); /* Put us first on list */
|
||||
}
|
||||
ids.addFirst(pid); /* Put us first on list */
|
||||
}
|
||||
/* And re-attach to active jobs */
|
||||
if(mapManager != null)
|
||||
|
Loading…
Reference in New Issue
Block a user