Correction d'un bug de Synchronisation
This commit is contained in:
parent
51db9fba84
commit
897b307035
@ -1,6 +1,8 @@
|
||||
package net.mc_pandacraft.java.plugin.pandacraftutils.modules;
|
||||
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import net.mc_pandacraft.java.plugin.pandacraftutils.ConfigManager;
|
||||
import net.mc_pandacraft.java.plugin.pandacraftutils.PandacraftUtils;
|
||||
import net.mc_pandacraft.java.plugin.pandacraftutils.players.OnlinePlayer;
|
||||
@ -51,7 +53,8 @@ public class AfkManager extends BukkitRunnable implements Listener {
|
||||
@Override
|
||||
public void run() {
|
||||
// methode exécutée toute les secondes
|
||||
for (OnlinePlayer ap : OnlinePlayerManager.getInstance().getAll())
|
||||
Collection<OnlinePlayer> oPlayers = OnlinePlayerManager.getInstance().getAll();
|
||||
for (OnlinePlayer ap : oPlayers)
|
||||
{ // parcours de tout les joueurs
|
||||
if (ap == null)
|
||||
continue;
|
||||
|
@ -1,6 +1,7 @@
|
||||
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;
|
||||
@ -80,7 +81,7 @@ public final class OnlinePlayerManager implements Listener {
|
||||
}
|
||||
|
||||
public Collection<OnlinePlayer> getAll() {
|
||||
return players.values();
|
||||
return Collections.unmodifiableCollection(players.values());
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user