SPIGOT-7946: API for server pause when empty seconds

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2024-11-06 20:38:09 +11:00
parent 0df40ed8d9
commit bbe0572877
2 changed files with 17 additions and 1 deletions

View File

@@ -2292,6 +2292,16 @@ public final class CraftServer implements Server {
return console.getPlayerIdleTimeout();
}
@Override
public int getPauseWhenEmptyTime() {
return this.getProperties().pauseWhenEmptySeconds;
}
@Override
public void setPauseWhenEmptyTime(int seconds) {
this.getProperties().pauseWhenEmptySeconds = seconds;
}
@Override
public ChunkGenerator.ChunkData createChunkData(World world) {
Preconditions.checkArgument(world != null, "World cannot be null");