c9daa16dac
72d33338f08 2a70ece9ab2 [M] abcf7aa4a40 9a88a38258c [M] 8dc4297e34f
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From c47774ff334f12fa7bf6a86570db6c97c452bdde 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 49429d7..0619584 100644
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
@@ -625,11 +625,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IAs
|
|
this.g[this.ticks % 100] = System.nanoTime() - i;
|
|
this.methodProfiler.b();
|
|
this.methodProfiler.a("snooper");
|
|
- if (!this.m.d() && this.ticks > 100) {
|
|
+ if (getSnooperEnabled() && !this.m.d() && this.ticks > 100) { // Spigot
|
|
this.m.a();
|
|
}
|
|
|
|
- if (this.ticks % 6000 == 0) {
|
|
+ if (getSnooperEnabled() && this.ticks % 6000 == 0) { // Spigot
|
|
this.m.b();
|
|
}
|
|
|
|
--
|
|
2.1.0
|
|
|