Improved handling of unloadLater()

This commit is contained in:
Butzlabben 2019-10-04 13:23:40 +02:00
parent b5352a25d3
commit 42efaf4518

View File

@ -218,6 +218,11 @@ public class SystemWorld {
return;
}
// Do not start another unload task
if (unloading) {
return;
}
Preconditions.checkNotNull(w, "world must not be null");
WorldUnloadEvent event = new WorldUnloadEvent(this);
Bukkit.getPluginManager().callEvent(event);