Recorrection d'un bug de synchronisation dans l'analyse auto-AFK
This commit is contained in:
parent
b01ffd8bcb
commit
e2b897908c
@ -54,7 +54,7 @@ public class AfkManager extends BukkitRunnable implements Listener {
|
||||
public void run() {
|
||||
// methode exécutée toute les secondes
|
||||
Collection<OnlinePlayer> oPlayers = OnlinePlayerManager.getInstance().getAll();
|
||||
for (OnlinePlayer ap : oPlayers)
|
||||
for (OnlinePlayer ap : oPlayers.toArray(new OnlinePlayer[oPlayers.size()]))
|
||||
{ // parcours de tout les joueurs
|
||||
if (ap == null)
|
||||
continue;
|
||||
|
@ -1,7 +1,6 @@
|
||||
package net.mc_pandacraft.java.plugin.pandacraftutils.players;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
|
||||
import net.mc_pandacraft.java.plugin.pandacraftutils.PandacraftUtils;
|
||||
@ -81,7 +80,7 @@ public final class OnlinePlayerManager implements Listener {
|
||||
}
|
||||
|
||||
public Collection<OnlinePlayer> getAll() {
|
||||
return Collections.unmodifiableCollection(players.values());
|
||||
return players.values();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user