mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 02:55:47 +01:00
Disable Vanilla Chunk GC in favor of Bukkits
This commit is contained in:
parent
a57cf220e8
commit
9e6cbc5203
33
Spigot-Server-Patches/0178-Disable-Vanilla-Chunk-GC.patch
Normal file
33
Spigot-Server-Patches/0178-Disable-Vanilla-Chunk-GC.patch
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
From 8e28660b4ee39ff1513a7aed26639e343bc7050e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Aikar <aikar@aikar.co>
|
||||||
|
Date: Mon, 26 Sep 2016 01:51:30 -0400
|
||||||
|
Subject: [PATCH] Disable Vanilla Chunk GC
|
||||||
|
|
||||||
|
Bukkit has its own system for this.
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
||||||
|
index 26ab536..777a5df 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
||||||
|
@@ -1036,7 +1036,7 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
||||||
|
|
||||||
|
chunkproviderserver.a(flag);
|
||||||
|
// CraftBukkit - ArrayList -> Collection
|
||||||
|
- Collection arraylist = chunkproviderserver.a();
|
||||||
|
+ /* //Paper start Collection arraylist = chunkproviderserver.a();
|
||||||
|
Iterator iterator = arraylist.iterator();
|
||||||
|
|
||||||
|
while (iterator.hasNext()) {
|
||||||
|
@@ -1045,7 +1045,8 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
||||||
|
if (chunk != null && !this.manager.a(chunk.locX, chunk.locZ)) {
|
||||||
|
chunkproviderserver.unload(chunk);
|
||||||
|
}
|
||||||
|
- }
|
||||||
|
+ }*/
|
||||||
|
+ // Paper end
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
--
|
||||||
|
1.9.1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user