2017-09-18 13:04:01 +02:00
|
|
|
From 6be1bbe127eda2d0bb7510d1e3d36aa55f9b50ac 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
|
2017-09-18 13:04:01 +02:00
|
|
|
index 506eab20d..d6c9bfc5d 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
|
2017-09-18 13:04:01 +02:00
|
|
|
@@ -357,7 +357,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
2016-07-29 02:17:26 +02:00
|
|
|
|
|
|
|
if (d10 > org.spigotmc.SpigotConfig.movedWronglyThreshold) { // Spigot
|
|
|
|
flag1 = true;
|
2017-05-14 20:05:01 +02:00
|
|
|
- PlayerConnection.LOGGER.warn("{} moved wrongly!", entity.getName());
|
2016-07-29 02:17:26 +02:00
|
|
|
+ PlayerConnection.LOGGER.warn(entity.getName() + " (vehicle of " + this.player.getName() + ") moved wrongly!"); // Paper - More informative
|
|
|
|
}
|
|
|
|
|
|
|
|
entity.setLocation(d3, d4, d5, f, f1);
|
|
|
|
--
|
2017-09-18 13:04:01 +02:00
|
|
|
2.14.1
|
2016-07-29 02:17:26 +02:00
|
|
|
|