mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-12 09:51:12 +01:00
Add API to get/set inhabited time of a Chunk
This commit is contained in:
parent
b79a86edeb
commit
023f438cca
1 changed files with 12 additions and 0 deletions
|
@ -199,6 +199,18 @@ public class CraftChunk implements Chunk {
|
||||||
return getWorld().getPluginChunkTickets(getX(), getZ());
|
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
|
@Override
|
||||||
public ChunkSnapshot getChunkSnapshot() {
|
public ChunkSnapshot getChunkSnapshot() {
|
||||||
return getChunkSnapshot(true, false, false);
|
return getChunkSnapshot(true, false, false);
|
||||||
|
|
Loading…
Reference in a new issue