mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
e02c239421
As requested here: http://www.spigotmc.org/threads/specify-location-of-spigot-yml.67747/
39 lines
1.8 KiB
Diff
39 lines
1.8 KiB
Diff
From 8e4e7ddb561ab48c6ed60a4f4fbbdf6cc2ed30c1 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/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
index 2469f48..3fe7038 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -417,7 +417,8 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
|
d15 = d11 * d11 + d12 * d12 + d13 * d13;
|
|
boolean flag1 = false;
|
|
|
|
- if (d15 > 0.0625D && !this.player.isSleeping() && !this.player.playerInteractManager.isCreative()) {
|
|
+ // Spigot: make "moved wrongly" limit configurable
|
|
+ if (d15 > org.spigotmc.SpigotConfig.movedWronglyThreshold && !this.player.isSleeping() && !this.player.playerInteractManager.isCreative()) {
|
|
flag1 = true;
|
|
PlayerConnection.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
|
|
index 921d7d5..7e774f2 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
@@ -334,4 +334,10 @@ public class SpigotConfig
|
|
{
|
|
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.0.msysgit.0
|
|
|