Paper/patches/server/0158-Fix-MC-117075-Block-entity-unload-lag-spike.patch

35 lines
2.0 KiB
Diff
Raw Normal View History

2021-06-16 06:53:50 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: mezz <tehgeek@gmail.com>
Date: Wed, 9 Aug 2017 17:51:22 -0500
Subject: [PATCH] Fix MC-117075: Block entity unload lag spike
2021-06-16 06:53:50 +02:00
diff --git a/src/main/java/net/minecraft/world/level/Level.java b/src/main/java/net/minecraft/world/level/Level.java
2024-02-01 10:15:57 +01:00
index 0045016cd22c34168c4ae5f2fe951d536394be9a..c8914696785d0d6c451d598616a83c316f611aad 100644
2021-06-16 06:53:50 +02:00
--- a/src/main/java/net/minecraft/world/level/Level.java
+++ b/src/main/java/net/minecraft/world/level/Level.java
2024-02-01 10:15:57 +01:00
@@ -729,6 +729,8 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
2023-12-05 23:12:48 +01:00
boolean flag = this.tickRateManager().runsNormally();
2021-06-16 06:53:50 +02:00
int tilesThisCycle = 0;
+ var toRemove = new it.unimi.dsi.fastutil.objects.ReferenceOpenHashSet<TickingBlockEntity>(); // Paper - Fix MC-117075; use removeAll
+ toRemove.add(null); // Paper - Fix MC-117075
2021-06-16 06:53:50 +02:00
for (tileTickPosition = 0; tileTickPosition < this.blockEntityTickers.size(); tileTickPosition++) { // Paper - Disable tick limiters
this.tileTickPosition = (this.tileTickPosition < this.blockEntityTickers.size()) ? this.tileTickPosition : 0;
2023-10-27 01:34:58 +02:00
TickingBlockEntity tickingblockentity = (TickingBlockEntity) this.blockEntityTickers.get(this.tileTickPosition);
2024-02-01 10:15:57 +01:00
@@ -737,12 +739,13 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
2021-06-16 06:53:50 +02:00
if (tickingblockentity.isRemoved()) {
// Spigot start
tilesThisCycle--;
- this.blockEntityTickers.remove(this.tileTickPosition--);
+ toRemove.add(tickingblockentity); // Paper - Fix MC-117075; use removeAll
2021-06-16 06:53:50 +02:00
// Spigot end
2023-12-05 23:12:48 +01:00
} else if (flag && this.shouldTickBlocksAt(tickingblockentity.getPos())) {
2021-06-16 06:53:50 +02:00
tickingblockentity.tick();
}
}
+ this.blockEntityTickers.removeAll(toRemove); // Paper - Fix MC-117075
2021-06-16 06:53:50 +02:00
2023-10-27 01:34:58 +02:00
this.timings.tileEntityTick.stopTiming(); // Spigot
2021-06-16 06:53:50 +02:00
this.tickingBlockEntities = false;