mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From b082ecfc606ef0d3f554e5edd3a37c1342c7c59c 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 523f429..a9431be 100644
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
@@ -585,11 +585,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
|
|
this.g[this.ticks % 100] = System.nanoTime() - i;
|
|
this.methodProfiler.b();
|
|
this.methodProfiler.a("snooper");
|
|
- if (!this.l.d() && this.ticks > 100) {
|
|
+ if (getSnooperEnabled() && !this.l.d() && this.ticks > 100) { // Spigot
|
|
this.l.a();
|
|
}
|
|
|
|
- if (this.ticks % 6000 == 0) {
|
|
+ if (getSnooperEnabled() && this.ticks % 6000 == 0) { // Spigot
|
|
this.l.b();
|
|
}
|
|
|
|
--
|
|
1.9.1
|
|
|