mirror of
https://github.com/songoda/UltimateStacker.git
synced 2024-11-14 22:25:22 +01:00
Let's hide yet another error.
This commit is contained in:
parent
1cbc70bf89
commit
5656a4885a
@ -70,10 +70,18 @@ public class StackingTask extends BukkitRunnable {
|
||||
// Loop through each world.
|
||||
for (World world : Bukkit.getWorlds()) {
|
||||
// If world is disabled then continue to the next world.
|
||||
|
||||
if (isWorldDisabled(world)) continue;
|
||||
|
||||
// Get the loaded entities from the current world and reverse them.
|
||||
List<Entity> entities = new ArrayList<>(world.getEntities());
|
||||
List<Entity> entities;
|
||||
try {
|
||||
entities = new ArrayList<>(world.getEntities());
|
||||
} catch (Exception ignored) {
|
||||
continue;
|
||||
// Sometimes accessing this method asynchronously throws an error. This is super rare and
|
||||
// as such doesn't really affect the plugin so we're just going to ignore this failure.
|
||||
}
|
||||
Collections.reverse(entities);
|
||||
|
||||
// Loop through the entities.
|
||||
|
Loading…
Reference in New Issue
Block a user