2018-01-11 06:31:19 +01:00
|
|
|
From d5289fd7076ab2d8a87722594dde384751f5fe2a 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
|
2018-01-11 06:31:19 +01:00
|
|
|
index 187e59a0..98cb8440 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);
|
|
|
|
--
|
2018-01-11 06:31:19 +01:00
|
|
|
2.14.3
|
2016-07-29 02:17:26 +02:00
|
|
|
|