2014-08-31 20:56:05 +02:00
|
|
|
From 77928f8b84ccf7abeb9851cf4963e3e8953eb376 Mon Sep 17 00:00:00 2001
|
2014-07-22 22:25:09 +02:00
|
|
|
From: Jonas Konrad <me@yawk.at>
|
|
|
|
Date: Fri, 4 Jul 2014 23:03:13 +0200
|
|
|
|
Subject: [PATCH] Make "moved wrongly" limit configurable
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2014-08-18 17:43:17 +02:00
|
|
|
index bd61823..845fbc4 100644
|
2014-07-22 22:25:09 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
@@ -399,7 +399,8 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
|
|
d10 = d4 * d4 + d5 * d5 + d6 * d6;
|
|
|
|
boolean flag1 = false;
|
|
|
|
|
|
|
|
- if (d10 > 0.0625D && !this.player.isSleeping() && !this.player.playerInteractManager.isCreative()) {
|
|
|
|
+ // Spigot: make "moved wrongly" limit configurable
|
|
|
|
+ if (d10 > org.spigotmc.SpigotConfig.movedWronglyThreshold && !this.player.isSleeping() && !this.player.playerInteractManager.isCreative()) {
|
|
|
|
flag1 = true;
|
|
|
|
c.warn(this.player.getName() + " moved wrongly!");
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
2014-07-27 21:14:24 +02:00
|
|
|
index 429ad36..6a230f9 100644
|
2014-07-22 22:25:09 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
2014-07-27 21:14:24 +02:00
|
|
|
@@ -333,4 +333,10 @@ public class SpigotConfig
|
2014-07-22 22:25:09 +02:00
|
|
|
{
|
|
|
|
intCacheLimit = getInt( "settings.int-cache-limit", 1024 );
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public static double movedWronglyThreshold;
|
|
|
|
+ private static void movedWronglyThreshold()
|
|
|
|
+ {
|
|
|
|
+ movedWronglyThreshold = getDouble( "settings.moved-wrongly-threshold", 0.0625D );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
|
|
|
1.9.1
|
2014-07-30 10:35:19 +02:00
|
|
|
|