List of usage examples for net.minecraftforge.event.world ChunkEvent getChunk
public IChunk getChunk()
From source file:com.ethylamine.fsynthesis.util.position.ChunkCoord.java
License:Open Source License
private ChunkCoord(ChunkEvent event) { this(event.getChunk().xPosition, event.getChunk().zPosition); }