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