2022-05-06 17:33:07 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Noah van der Aa <ndvdaa@gmail.com>
|
|
|
|
Date: Fri, 7 Jan 2022 11:58:26 +0100
|
|
|
|
Subject: [PATCH] Don't tick markers
|
|
|
|
|
|
|
|
Fixes https://github.com/PaperMC/Paper/issues/7276 by not adding markers to the entity
|
|
|
|
tick list at all and ignoring them in Spigot's activation range checks. The entity tick
|
|
|
|
list is only used in the tick and tickPassenger methods, so we can safely not add the
|
|
|
|
markers to it.
|
|
|
|
|
2022-07-09 01:01:42 +02:00
|
|
|
diff --git a/src/main/java/io/papermc/paper/command/subcommands/EntityCommand.java b/src/main/java/io/papermc/paper/command/subcommands/EntityCommand.java
|
2022-12-08 11:53:14 +01:00
|
|
|
index 9e51b3d1217ad6dc5c0c11d2febac7144e5721af..a38a0c11c9e12aeff73d792368e1a69a856376d4 100644
|
2022-07-09 01:01:42 +02:00
|
|
|
--- a/src/main/java/io/papermc/paper/command/subcommands/EntityCommand.java
|
|
|
|
+++ b/src/main/java/io/papermc/paper/command/subcommands/EntityCommand.java
|
|
|
|
@@ -103,7 +103,7 @@ public final class EntityCommand implements PaperSubcommand {
|
|
|
|
ChunkPos chunk = e.chunkPosition();
|
|
|
|
info.left++;
|
|
|
|
info.right.put(chunk, info.right.getOrDefault(chunk, 0) + 1);
|
|
|
|
- if (!chunkProviderServer.isPositionTicking(e)) {
|
|
|
|
+ if (!chunkProviderServer.isPositionTicking(e) || e instanceof net.minecraft.world.entity.Marker) { // Markers aren't ticked.
|
|
|
|
nonEntityTicking.merge(key, 1, Integer::sum);
|
|
|
|
}
|
|
|
|
});
|
2022-05-06 17:33:07 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2022-12-19 11:46:55 +01:00
|
|
|
index b91a199f2e426b49ddc72c8e9d0224c05d8a7acd..d0a19d8e04e92a39d5db19e9eb23aa44a7691567 100644
|
2022-05-06 17:33:07 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2022-12-19 11:46:55 +01:00
|
|
|
@@ -2497,6 +2497,7 @@ public class ServerLevel extends Level implements WorldGenLevel {
|
2022-05-06 17:33:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void onTickingStart(Entity entity) {
|
|
|
|
+ if (entity instanceof net.minecraft.world.entity.Marker) return; // Paper - Don't tick markers
|
|
|
|
ServerLevel.this.entityTickList.add(entity);
|
|
|
|
}
|
2022-09-26 10:02:51 +02:00
|
|
|
|
2022-05-06 17:33:07 +02:00
|
|
|
diff --git a/src/main/java/org/spigotmc/ActivationRange.java b/src/main/java/org/spigotmc/ActivationRange.java
|
2023-01-27 21:52:04 +01:00
|
|
|
index f158fc8a151272428a33dc5f6e1742876edc80d5..e881584d38dc354204479863f004e974a0ac6c07 100644
|
2022-05-06 17:33:07 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/ActivationRange.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/ActivationRange.java
|
2022-07-30 18:47:35 +02:00
|
|
|
@@ -212,7 +212,7 @@ public class ActivationRange
|
2022-05-06 17:33:07 +02:00
|
|
|
// Paper end
|
|
|
|
|
|
|
|
// Paper start
|
|
|
|
- java.util.List<Entity> entities = world.getEntities((Entity)null, maxBB, null);
|
|
|
|
+ java.util.List<Entity> entities = world.getEntities((Entity)null, maxBB, (e) -> !(e instanceof net.minecraft.world.entity.Marker)); // Don't tick markers
|
|
|
|
for (int i = 0; i < entities.size(); i++) {
|
|
|
|
Entity entity = entities.get(i);
|
|
|
|
ActivationRange.activateEntity(entity);
|