1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-03 21:37:28 +01:00

Decrease dead entity teleport warning ()

Decreases the warning back to its 1.21.1 level where only teleports of
dead/invalid entities across dimensions were logged.
This commit is contained in:
Bjarne Koll 2024-11-01 22:25:31 +01:00
parent 46b6f65764
commit 03d2a7f64e

View file

@ -39,7 +39,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
Level world = this.level();
+ // Paper start - Fix item duplication and teleport issues
+ if (!this.isAlive() || !this.valid) {
+ if ((!this.isAlive() || !this.valid) && (teleportTarget.newLevel() != world)) {
+ LOGGER.warn("Illegal Entity Teleport " + this + " to " + teleportTarget.newLevel() + ":" + teleportTarget.position(), new Throwable());
+ return null;
+ }