Paper/Spigot-Server-Patches/0050-Change-implementation-of-tile-entity-removal-list.patch

24 lines
1.1 KiB
Diff
Raw Normal View History

2019-07-20 06:01:24 +02:00
From 1eccbe939abff45b26650e89f4db915f53c5b36b Mon Sep 17 00:00:00 2001
2019-04-26 03:24:00 +02:00
From: Joseph Hirschfeld <joe@ibj.io>
Date: Thu, 3 Mar 2016 02:39:54 -0600
Subject: [PATCH] Change implementation of (tile)entity removal list
use sets for faster removal
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
2019-07-20 06:01:24 +02:00
index f5590f5ab2..d80497e993 100644
2019-04-26 03:24:00 +02:00
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
@@ -40,7 +40,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
public final List<TileEntity> tileEntityList = Lists.newArrayList();
public final List<TileEntity> tileEntityListTick = Lists.newArrayList();
protected final List<TileEntity> tileEntityListPending = Lists.newArrayList();
- protected final List<TileEntity> tileEntityListUnload = Lists.newArrayList();
+ protected final java.util.Set<TileEntity> tileEntityListUnload = com.google.common.collect.Sets.newHashSet(); // Paper
private final long b = 16777215L;
2019-05-14 04:20:58 +02:00
private final Thread serverThread;
2019-07-20 06:01:24 +02:00
private int u;
2019-04-26 03:24:00 +02:00
--
2.22.0
2019-04-26 03:24:00 +02:00