2017-04-22 08:16:45 +02:00
|
|
|
From 8fa14bdc0cab3b0e51f4255fb748ba1a5305cf13 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-04-20 15:22:08 +02:00
|
|
|
index dfbae01f4..4b79031f0 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;
|
|
|
|
- PlayerConnection.LOGGER.warn("{} moved wrongly!", new Object[] { entity.getName()});
|
|
|
|
+ PlayerConnection.LOGGER.warn(entity.getName() + " (vehicle of " + this.player.getName() + ") moved wrongly!"); // Paper - More informative
|
|
|
|
}
|
|
|
|
|
|
|
|
entity.setLocation(d3, d4, d5, f, f1);
|
|
|
|
--
|
2017-04-22 08:16:45 +02:00
|
|
|
2.12.2
|
2016-07-29 02:17:26 +02:00
|
|
|
|