diff options
author | Jake Potrebic <[email protected]> | 2022-03-04 00:09:43 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-04 09:09:43 +0100 |
commit | 15b6b3db2cf24c98afbfb0849e694875d18fc021 (patch) | |
tree | 03e884d0c7fe2ce292825b5b51ec4c9a6ce2e8cc /patches/server/0747-Add-more-async-catchers.patch | |
parent | 753bf2c1034c5f35cc0839001d12363a44f936fc (diff) | |
download | Paper-15b6b3db2cf24c98afbfb0849e694875d18fc021.tar.gz Paper-15b6b3db2cf24c98afbfb0849e694875d18fc021.zip |
Add StructuresLocateEvent as replacement for StructureLocateEvent (#7524)
Diffstat (limited to 'patches/server/0747-Add-more-async-catchers.patch')
-rw-r--r-- | patches/server/0747-Add-more-async-catchers.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/patches/server/0747-Add-more-async-catchers.patch b/patches/server/0747-Add-more-async-catchers.patch new file mode 100644 index 0000000000..f0813b3370 --- /dev/null +++ b/patches/server/0747-Add-more-async-catchers.patch @@ -0,0 +1,44 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Spottedleaf <[email protected]> +Date: Thu, 15 Jul 2021 01:41:53 -0700 +Subject: [PATCH] Add more async catchers + + +diff --git a/src/main/java/net/minecraft/world/level/entity/EntityTickList.java b/src/main/java/net/minecraft/world/level/entity/EntityTickList.java +index f01182a0ac8a14bcd5b1deb778306e7bf1bf70ed..b27c8db914cca3ff0ea8a24acddb9cb9870ce21d 100644 +--- a/src/main/java/net/minecraft/world/level/entity/EntityTickList.java ++++ b/src/main/java/net/minecraft/world/level/entity/EntityTickList.java +@@ -30,11 +30,13 @@ public class EntityTickList { + } + + public void add(Entity entity) { ++ io.papermc.paper.util.TickThread.ensureTickThread("Asynchronous entity ticklist addition"); // Paper + this.ensureActiveIsNotIterated(); + this.active.put(entity.getId(), entity); + } + + public void remove(Entity entity) { ++ io.papermc.paper.util.TickThread.ensureTickThread("Asynchronous entity ticklist removal"); // Paper + this.ensureActiveIsNotIterated(); + this.active.remove(entity.getId()); + } +@@ -44,6 +46,7 @@ public class EntityTickList { + } + + public void forEach(Consumer<Entity> action) { ++ io.papermc.paper.util.TickThread.ensureTickThread("Asynchronous entity ticklist iteration"); // Paper + if (this.iterated != null) { + throw new UnsupportedOperationException("Only one concurrent iteration supported"); + } else { +diff --git a/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java b/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java +index 2110cb437807f99994838b57653caefe2f01a9c5..35e3926a878dd87f05bb41e9e52b4e04e30752eb 100644 +--- a/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java ++++ b/src/main/java/net/minecraft/world/level/entity/PersistentEntitySectionManager.java +@@ -166,6 +166,7 @@ public class PersistentEntitySectionManager<T extends EntityAccess> implements A + } + + public void updateChunkStatus(ChunkPos chunkPos, ChunkHolder.FullChunkStatus levelType) { ++ io.papermc.paper.util.TickThread.ensureTickThread("Asynchronous chunk ticking status update"); // Paper + Visibility visibility = Visibility.fromFullChunkStatus(levelType); + + this.updateChunkStatus(chunkPos, visibility); |