Log skipped entity's position

This commit is contained in:
BillyGalbreath
2022-11-24 11:00:57 -06:00
parent 6368dc84de
commit 486852982a

View File

@@ -0,0 +1,23 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: BillyGalbreath <blake.galbreath@gmail.com>
Date: Thu, 24 Nov 2022 11:00:37 -0600
Subject: [PATCH] Log skipped entity's position
diff --git a/src/main/java/net/minecraft/world/entity/EntityType.java b/src/main/java/net/minecraft/world/entity/EntityType.java
index 91be8629612d3afdcd742c2cd0155df738fd992c..5cc8a35e7b3ba6d38eecc2bfd3cacfe3cf433203 100644
--- a/src/main/java/net/minecraft/world/entity/EntityType.java
+++ b/src/main/java/net/minecraft/world/entity/EntityType.java
@@ -573,6 +573,12 @@ public class EntityType<T extends Entity> implements EntityTypeTest<Entity, T> {
entity.load(nbt);
}, () -> {
EntityType.LOGGER.warn("Skipping Entity with id {}", nbt.getString("id"));
+ // Purpur start - log skipped entity's position
+ try {
+ ListTag pos = nbt.getList("Pos", 6);
+ EntityType.LOGGER.warn("Location: {} {},{},{}", world.getWorld().getName(), pos.getDouble(0), pos.getDouble(0), pos.getDouble(0));
+ } catch (Throwable ignore) {}
+ // Purpur end
});
}