| Package | Description | 
|---|---|
| net.minecraftforge.event.world | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ChunkDataEventChunkDataEvent is fired when an event involving chunk data occurs. If a method utilizes this Eventas its parameter, the method will
 receive every child event of this class.ChunkDataEvent.datacontains the NBTTagCompound containing the chunk data for this event.All children of this event are fired on the MinecraftForge.EVENT_BUS. | 
| static class  | ChunkDataEvent.LoadChunkDataEvent.Load is fired when vanilla Minecraft attempts to load Chunk data. This event is fired during chunk loading in ChunkIOProvider.syncCallback().This event is not Cancelable.This event does not have a result. | 
| static class  | ChunkDataEvent.SaveChunkDataEvent.Save is fired when vanilla Minecraft attempts to save Chunk data. This event is fired during chunk saving in AnvilChunkLoader.saveChunk(World, Chunk). | 
| static class  | ChunkEvent.LoadChunkEvent.Load is fired when vanilla Minecraft attempts to load a Chunk into the world. This event is fired during chunk loading in ChunkProviderClient.loadChunk(int, int),Chunk.onChunkLoad(). | 
| static class  | ChunkEvent.UnloadChunkEvent.Unload is fired when vanilla Minecraft attempts to unload a Chunk from the world. This event is fired during chunk unloading in Chunk.onChunkUnload(). |