mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 05:55:44 +01:00
Tweak thresholds for can't keep up message
This commit is contained in:
parent
91ada5c2bc
commit
585b2ebdd5
@ -460,8 +460,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
MinecraftServer.LOGGER.info("Saving worlds");
|
MinecraftServer.LOGGER.info("Saving worlds");
|
||||||
@@ -548,11 +748,13 @@
|
@@ -545,14 +745,16 @@
|
||||||
if (i > 2000L && this.nextTick - this.lastOverloadTime >= 15000L) {
|
while (this.isRunning) {
|
||||||
|
long i = SystemUtils.getMonotonicMillis() - this.nextTick;
|
||||||
|
|
||||||
|
- if (i > 2000L && this.nextTick - this.lastOverloadTime >= 15000L) {
|
||||||
|
+ if (i > 5000L && this.nextTick - this.lastOverloadTime >= 30000L) { // CraftBukkit
|
||||||
long j = i / 50L;
|
long j = i / 50L;
|
||||||
|
|
||||||
+ if (server.getWarnOnOverload()) // CraftBukkit
|
+ if (server.getWarnOnOverload()) // CraftBukkit
|
||||||
|
Loading…
Reference in New Issue
Block a user