mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
6360da3884
Simply a fix to the small performance shortpath.
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From fd42204f5757b7af9451bdc9dcf68d7eafa22901 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 5d1aa0b..2acf3bd 100644
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
@@ -656,11 +656,11 @@ public abstract class MinecraftServer implements Runnable, ICommandListener, IAs
|
|
this.h[this.ticks % 100] = System.nanoTime() - i;
|
|
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();
|
|
}
|
|
|
|
--
|
|
2.1.4
|
|
|