mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 18:01:17 +01:00
6048122e23
This patch appears to be causing some issues with 1.14.3 entity AI
23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
From ad2ef25c9755f2a4327d11762dc61d0bb21b247e Mon Sep 17 00:00:00 2001
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
Date: Thu, 28 Jul 2016 17:58:53 -0500
|
|
Subject: [PATCH] More informative vehicle moved wrongly message
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
index bbc5acd7fe..7c0d487d79 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -361,7 +361,7 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
|
|
|
if (d10 > org.spigotmc.SpigotConfig.movedWronglyThreshold) { // Spigot
|
|
flag1 = true;
|
|
- PlayerConnection.LOGGER.warn("{} moved wrongly!", entity.getDisplayName().getString());
|
|
+ PlayerConnection.LOGGER.warn(entity.getName() + " (vehicle of " + this.player.getName() + ") moved wrongly!"); // Paper - More informative
|
|
}
|
|
Location curPos = this.getPlayer().getLocation(); // Spigot
|
|
|
|
--
|
|
2.22.0
|
|
|