All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.event.world.ChunkPopulateEvent Maven / Gradle / Ivy

package org.bukkit.event.world;

import org.bukkit.Chunk;
import org.bukkit.event.HandlerList;
import org.bukkit.generator.BlockPopulator;

/**
 * Thrown when a new chunk has finished being populated.
 * 

* If your intent is to populate the chunk using this event, please see {@link * BlockPopulator} */ public class ChunkPopulateEvent extends ChunkEvent { private static final HandlerList handlers = new HandlerList(); public ChunkPopulateEvent(final Chunk chunk) { super(chunk); } public static HandlerList getHandlerList() { return handlers; } @Override public HandlerList getHandlers() { return handlers; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy