mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
27 lines
1 KiB
Diff
27 lines
1 KiB
Diff
From f22527d9374b1d8b3bcb9fd8f52779ce8fc2c74c 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 26fe01bae..6aa9b6058 100644
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
@@ -678,11 +678,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IAs
|
|
this.h[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.14.1
|
|
|