Skip to content

AllWorldsLoadedEvent

Package: com.hypixel.hytale.server.core.universe.world.events Implements: IEvent<Void> Cancellable: No

Standard event dispatched when all worlds have completed loading. This is a marker event with no data fields — it signals that the world loading phase of the server startup is complete.

This event has no data fields.

Dispatch location not identified in decompiled source. This event may be dispatched by game modules not yet mapped.

getEventRegistry().register(AllWorldsLoadedEvent.class, event -> {
// All worlds are now loaded and available
getLogger().info("All worlds loaded successfully");
});