Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.event.world;
2
3import org.bukkit.Chunk;
4import org.bukkit.generator.BlockPopulator;
5
6/**
7 * Thrown when a new chunk has finished being populated.
8 * <p>
9 * If your intent is to populate the chunk using this event, please see {@link BlockPopulator}
10 */
11public class ChunkPopulateEvent extends ChunkEvent {
12 public ChunkPopulateEvent(final Chunk chunk) {
13 super(Type.CHUNK_POPULATED, chunk);
14 }
15}