mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
1c49ff69f4
The hell happened here. : Fix Build 2339ac14a8e Regen the patches 89d3fcbdfaf This new system breaks a lot :(
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 3aa41a8b9df8054e481316c0e17e51f19a2c983c Mon Sep 17 00:00:00 2001
|
|
From: drXor <mcyoungsota@gmail.com>
|
|
Date: Fri, 25 Apr 2014 18:17:30 -0400
|
|
Subject: [PATCH] Configurable UserCache cap
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/UserCache.java b/src/main/java/net/minecraft/server/UserCache.java
|
|
index 6781a64..3eeaf09 100644
|
|
--- a/src/main/java/net/minecraft/server/UserCache.java
|
|
+++ b/src/main/java/net/minecraft/server/UserCache.java
|
|
@@ -186,7 +186,7 @@ public class UserCache {
|
|
}
|
|
|
|
public void c() {
|
|
- String s = this.b.toJson(this.a(1000));
|
|
+ String s = this.b.toJson(this.a(org.spigotmc.SpigotConfig.userCacheCap));
|
|
BufferedWriter bufferedwriter = null;
|
|
|
|
try {
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
index 4932990..d416087 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
@@ -315,4 +315,10 @@ public class SpigotConfig
|
|
replaceCommands = new HashSet<String>( (List<String>) getList( "commands.replace-commands",
|
|
Arrays.asList( "setblock", "summon", "testforblock", "tellraw" ) ) );
|
|
}
|
|
+
|
|
+ public static int userCacheCap;
|
|
+ private static void userCacheCap()
|
|
+ {
|
|
+ userCacheCap = getInt( "settings.user-cache-size", 1000 );
|
|
+ }
|
|
}
|
|
--
|
|
2.1.0
|
|
|