2017-05-14 20:05:01 +02:00
|
|
|
From c07deef294fa84147dfaf65f385f3ed3e78fc82c 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-05-14 20:05:01 +02:00
|
|
|
index 353e73b15..b8ec71a93 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-04-20 15:22:08 +02:00
|
|
|
@@ -343,7 +343,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-05-14 20:05:01 +02:00
|
|
|
2.13.0
|
2016-07-29 02:17:26 +02:00
|
|
|
|