mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
37 lines
1.6 KiB
Diff
37 lines
1.6 KiB
Diff
From 0d10a010535fe8edec931efdf08638fb0f557174 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/players/UserCache.java b/src/main/java/net/minecraft/server/players/UserCache.java
|
|
index dd6c8a284..2a6872967 100644
|
|
--- a/src/main/java/net/minecraft/server/players/UserCache.java
|
|
+++ b/src/main/java/net/minecraft/server/players/UserCache.java
|
|
@@ -273,7 +273,7 @@ public class UserCache {
|
|
JsonArray jsonarray = new JsonArray();
|
|
DateFormat dateformat = createDateFormat();
|
|
|
|
- this.getTopMRUProfiles(1000).forEach((usercache_usercacheentry) -> {
|
|
+ this.getTopMRUProfiles(org.spigotmc.SpigotConfig.userCacheCap).forEach((usercache_usercacheentry) -> { // Spigot
|
|
jsonarray.add(writeGameProfile(usercache_usercacheentry, dateformat));
|
|
});
|
|
String s = this.gson.toJson(jsonarray);
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
index 588d4656b..285bb7a20 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
@@ -314,4 +314,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.40.1
|
|
|