mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-08 16:12:18 -07:00
Implemented WORLD_LOADED
This commit is contained in:
@@ -22,6 +22,8 @@ import org.bukkit.plugin.SimplePluginManager;
|
||||
import org.bukkit.plugin.java.JavaPluginLoader;
|
||||
import org.bukkit.scheduler.BukkitScheduler;
|
||||
import org.bukkit.craftbukkit.scheduler.CraftScheduler;
|
||||
import org.bukkit.event.Event.Type;
|
||||
import org.bukkit.event.world.WorldEvent;
|
||||
|
||||
public final class CraftServer implements Server {
|
||||
private final String serverName = "Craftbukkit";
|
||||
@@ -255,5 +257,7 @@ public final class CraftServer implements Server {
|
||||
|
||||
protected void addWorld(World world) {
|
||||
worlds.put(world.getName().toLowerCase(), world);
|
||||
|
||||
pluginManager.callEvent(new WorldEvent(Type.WORLD_LOADED, world));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user