2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Thu, 12 May 2016 23:02:58 -0500
|
|
|
|
Subject: [PATCH] System property for disabling watchdoge
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/spigotmc/WatchdogThread.java b/src/main/java/org/spigotmc/WatchdogThread.java
|
2023-12-05 18:20:55 +01:00
|
|
|
index b5a2cbc21165e80820d6f7e2690e6e18de54c420..e2bafc68e88c733873638ce7695b684d119f55da 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/WatchdogThread.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/WatchdogThread.java
|
2023-09-22 22:13:57 +02:00
|
|
|
@@ -61,7 +61,7 @@ public final class WatchdogThread extends io.papermc.paper.util.TickThread // Pa
|
2021-06-12 07:20:08 +02:00
|
|
|
while ( !this.stopping )
|
2021-06-11 14:02:28 +02:00
|
|
|
{
|
|
|
|
//
|
2021-06-12 07:20:08 +02:00
|
|
|
- if ( this.lastTick != 0 && this.timeoutTime > 0 && WatchdogThread.monotonicMillis() > this.lastTick + this.timeoutTime )
|
|
|
|
+ if ( this.lastTick != 0 && this.timeoutTime > 0 && WatchdogThread.monotonicMillis() > this.lastTick + this.timeoutTime && !Boolean.getBoolean("disable.watchdog")) // Paper - Add property to disable
|
2021-06-11 14:02:28 +02:00
|
|
|
{
|
|
|
|
Logger log = Bukkit.getServer().getLogger();
|
|
|
|
log.log( Level.SEVERE, "------------------------------" );
|