minecraft-src/net/minecraft/util/profiling/jfr/stats/ChunkIdentification.java
2025-07-04 01:41:11 +03:00

9 lines
383 B
Java

package net.minecraft.util.profiling.jfr.stats;
import jdk.jfr.consumer.RecordedEvent;
public record ChunkIdentification(String level, String dimension, int x, int z) {
public static ChunkIdentification from(RecordedEvent event) {
return new ChunkIdentification(event.getString("level"), event.getString("dimension"), event.getInt("chunkPosX"), event.getInt("chunkPosZ"));
}
}