mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2024-11-21 22:06:13 +00:00
47 lines
2.6 KiB
Diff
47 lines
2.6 KiB
Diff
From 81a27bbb3f4757a84170d1d24c862aa5b38ba982 Mon Sep 17 00:00:00 2001
|
|
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/network/PlayerConnection.java b/src/main/java/net/minecraft/server/network/PlayerConnection.java
|
|
index 3c6a5b7f11..7edea334fb 100644
|
|
--- a/src/main/java/net/minecraft/server/network/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/network/PlayerConnection.java
|
|
@@ -570,7 +570,7 @@ public class PlayerConnection extends ServerCommonPacketListenerImpl implements
|
|
d10 = d6 * d6 + d7 * d7 + d8 * d8;
|
|
boolean flag2 = false;
|
|
|
|
- if (d10 > 0.0625D) {
|
|
+ if (d10 > org.spigotmc.SpigotConfig.movedWronglyThreshold) { // Spigot
|
|
flag2 = true;
|
|
PlayerConnection.LOGGER.warn("{} (vehicle of {}) moved wrongly! {}", new Object[]{entity.getName().getString(), this.player.getName().getString(), Math.sqrt(d10)});
|
|
}
|
|
@@ -1231,7 +1231,7 @@ public class PlayerConnection extends ServerCommonPacketListenerImpl implements
|
|
d10 = d6 * d6 + d7 * d7 + d8 * d8;
|
|
boolean flag3 = false;
|
|
|
|
- if (!this.player.isChangingDimension() && d10 > 0.0625D && !this.player.isSleeping() && !this.player.gameMode.isCreative() && this.player.gameMode.getGameModeForPlayer() != EnumGamemode.SPECTATOR) {
|
|
+ if (!this.player.isChangingDimension() && d10 > org.spigotmc.SpigotConfig.movedWronglyThreshold && !this.player.isSleeping() && !this.player.gameMode.isCreative() && this.player.gameMode.getGameModeForPlayer() != EnumGamemode.SPECTATOR) { // Spigot
|
|
flag3 = true;
|
|
PlayerConnection.LOGGER.warn("{} moved wrongly!", this.player.getName().getString());
|
|
}
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
index 6dfa89f6fa..64156e8c6b 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
@@ -326,4 +326,10 @@ public class SpigotConfig
|
|
{
|
|
saveUserCacheOnStopOnly = getBoolean( "settings.save-user-cache-on-stop-only", false );
|
|
}
|
|
+
|
|
+ public static double movedWronglyThreshold;
|
|
+ private static void movedWronglyThreshold()
|
|
+ {
|
|
+ movedWronglyThreshold = getDouble( "settings.moved-wrongly-threshold", 0.0625D );
|
|
+ }
|
|
}
|
|
--
|
|
2.47.0
|
|
|