Fully disable snooper when not required
This commit is contained in:
parent
5eb704605d
commit
8e1879bfb5
|
@ -0,0 +1,27 @@
|
||||||
|
From bc28c0a818b1b9aaba56538f03d67748d19d67c5 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
|
||||||
|
index 33eaecc..f12b19e 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
||||||
|
@@ -498,11 +498,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
|
||||||
|
this.H = Packet.p;
|
||||||
|
this.methodProfiler.b();
|
||||||
|
this.methodProfiler.a("snooper");
|
||||||
|
- 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
|
||||||
|
this.n.b();
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
1.8.1.2
|
||||||
|
|
Loading…
Reference in New Issue