net.minestom.server.event.player.PlayerChunkLoadEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.event.player;
import net.minestom.server.entity.Player;
import net.minestom.server.event.trait.PlayerInstanceEvent;
import org.jetbrains.annotations.NotNull;
/**
* Called when a player receive a new chunk data.
*/
public class PlayerChunkLoadEvent implements PlayerInstanceEvent {
private final Player player;
private final int chunkX, chunkZ;
public PlayerChunkLoadEvent(@NotNull Player player, int chunkX, int chunkZ) {
this.player = player;
this.chunkX = chunkX;
this.chunkZ = chunkZ;
}
/**
* Gets the chunk X.
*
* @return the chunk X
*/
public int getChunkX() {
return chunkX;
}
/**
* Gets the chunk Z.
*
* @return the chunk Z
*/
public int getChunkZ() {
return chunkZ;
}
@Override
public @NotNull Player getPlayer() {
return player;
}
}