Paper/CraftBukkit-Patches/0037-Fully-Disable-Snooper-When-Not-Required.patch

28 lines
1 KiB
Diff
Raw Normal View History

2015-05-09 20:23:26 +00:00
From a13398ce78acf3168b87dca55bbc1f09e98d9c13 Mon Sep 17 00:00:00 2001
From: agentk20 <agentkid20@gmail.com>
Date: Sat, 3 Aug 2013 19:28:48 +1000
Subject: [PATCH] Fully Disable Snooper When Not Required
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
2015-05-09 20:23:26 +00:00
index 1cc4e47..a0634f8 100644
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
2015-05-09 20:23:26 +00:00
@@ -659,11 +659,11 @@ public abstract class MinecraftServer implements Runnable, ICommandListener, IAs
2015-02-28 11:36:22 +00:00
this.h[this.ticks % 100] = System.nanoTime() - i;
this.methodProfiler.b();
this.methodProfiler.a("snooper");
2015-02-28 11:36:22 +00:00
- if (!this.n.d() && this.ticks > 100) {
+ if (getSnooperEnabled() && !this.n.d() && this.ticks > 100) { // Spigot
this.n.a();
}
- if (this.ticks % 6000 == 0) {
+ if (getSnooperEnabled() && this.ticks % 6000 == 0) { // Spigot
2015-02-28 11:36:22 +00:00
this.n.b();
}
--
2015-05-09 20:23:26 +00:00
2.1.4