2019-06-14 04:27:40 +02:00
|
|
|
From a076039aba3c69b9a1ce81454e1f3da132e6a3ee Mon Sep 17 00:00:00 2001
|
2016-07-29 02:17:26 +02:00
|
|
|
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
|
2019-06-06 17:36:57 +02:00
|
|
|
index e88abe1d05..630059246f 100644
|
2016-07-29 02:17:26 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -361,7 +361,7 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
2016-07-29 02:17:26 +02:00
|
|
|
|
|
|
|
if (d10 > org.spigotmc.SpigotConfig.movedWronglyThreshold) { // Spigot
|
|
|
|
flag1 = true;
|
2018-07-16 22:08:09 +02:00
|
|
|
- PlayerConnection.LOGGER.warn("{} moved wrongly!", entity.getDisplayName().getString());
|
2016-07-29 02:17:26 +02:00
|
|
|
+ PlayerConnection.LOGGER.warn(entity.getName() + " (vehicle of " + this.player.getName() + ") moved wrongly!"); // Paper - More informative
|
|
|
|
}
|
2018-09-27 04:35:42 +02:00
|
|
|
Location curPos = this.getPlayer().getLocation(); // Spigot
|
2016-07-29 02:17:26 +02:00
|
|
|
|
|
|
|
--
|
2019-04-23 06:47:07 +02:00
|
|
|
2.21.0
|
2016-07-29 02:17:26 +02:00
|
|
|
|