mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-22 17:07:34 +01:00
Add API to get/set inhabited time of a Chunk
This commit is contained in:
parent
b79a86edeb
commit
023f438cca
@ -199,6 +199,18 @@ public class CraftChunk implements Chunk {
|
||||
return getWorld().getPluginChunkTickets(getX(), getZ());
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getInhabitedTime() {
|
||||
return getHandle().q();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInhabitedTime(long ticks) {
|
||||
Preconditions.checkArgument(ticks >= 0, "ticks cannot be negative");
|
||||
|
||||
getHandle().b(ticks);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ChunkSnapshot getChunkSnapshot() {
|
||||
return getChunkSnapshot(true, false, false);
|
||||
|
Loading…
Reference in New Issue
Block a user