3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-07-10 17:28:04 +02:00

Add additional info to entity warning in teleport packet

Dieser Commit ist enthalten in:
KennyTV 2020-01-02 18:25:43 +01:00
Ursprung 3e01afbe17
Commit 617f1d3876

Datei anzeigen

@ -35,6 +35,7 @@ import java.util.Optional;
public class EntityPackets1_14 extends EntityRewriter<Protocol1_13_2To1_14> {
private static final double RELATIVE_MOVE_FACTOR = 32 * 128;
private boolean warnedForMissingEntity;
@Override
protected void addTrackedEntity(PacketWrapper wrapper, int entityId, EntityType type) throws Exception {
@ -517,6 +518,11 @@ public class EntityPackets1_14 extends EntityRewriter<Protocol1_13_2To1_14> {
if (!optStoredEntity.isPresent()) {
if (!Via.getConfig().isSuppressMetadataErrors()) {
ViaBackwards.getPlatform().getLogger().warning("Stored entity with id " + entityId + " missing at position: " + x + " - " + y + " - " + z);
if (!warnedForMissingEntity) {
warnedForMissingEntity = true;
ViaBackwards.getPlatform().getLogger().warning("This is very likely caused by a plugin sending a teleport packet for an entity outside of the player's range.");
ViaBackwards.getPlatform().getLogger().warning("You can disable this warning in the ViaVersion config under \"suppress-metadata-errors\"");
}
}
return;
}