mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-29 19:51:30 +01:00
Decrease dead entity teleport warning (#11559)
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:
parent
46b6f65764
commit
03d2a7f64e
@ -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;
|
||||
+ }
|
||||
|
Loading…
Reference in New Issue
Block a user