Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-16 03:20:07 +01:00
3496f2d7e4
Developers!: You will need to clean up your work/Minecraft/1.13.2 folder for this Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: b850a822 SPIGOT-4526: Add conversion time API for Zombie & subclasses CraftBukkit Changes:38cf676e
SPIGOT-4534: CreatureSpawnEvent not being called for CHUNK_GENb446cb5d
SPIGOT-4527: Fix sponges with waterlogged blocks6ec8ea5c
SPIGOT-4526: Add conversion time API for Zombie & subclassesc64fe508
Mappings Updatea3c2ec03
Fix missing ServerListPingEvent call for legacy pings Spigot Changes: 1dc156ce Rebuild patches 140f654d Mappings Update
33 Zeilen
1.3 KiB
Diff
33 Zeilen
1.3 KiB
Diff
From bc73991ca431d8103066de1681288a381527e1f5 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 7a765cb7b..a8675b8c6 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
|
@@ -890,6 +890,7 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
|
chunkproviderserver.a(flag);
|
|
timings.worldSaveChunks.stopTiming(); // Paper
|
|
// CraftBukkit - ArrayList -> Collection
|
|
+ /* //Paper start - disable vanilla chunk GC
|
|
java.util.Collection arraylist = chunkproviderserver.a();
|
|
Iterator iterator = arraylist.iterator();
|
|
|
|
@@ -899,7 +900,8 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
|
if (chunk != null && !this.manager.a(chunk.locX, chunk.locZ)) {
|
|
chunkproviderserver.unload(chunk);
|
|
}
|
|
- }
|
|
+ }*/
|
|
+ // Paper end
|
|
timings.worldSave.stopTiming(); // Paper
|
|
}
|
|
}
|
|
--
|
|
2.20.0
|
|
|