mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-12-27 02:48:04 +01:00
mostly a revert to values from 0.5.7
This commit is contained in:
parent
2bf722a5f9
commit
eae6bdc967
@ -3,5 +3,5 @@ name: NoCheatPlugin
|
||||
author: Evenprime
|
||||
|
||||
main: cc.co.evenprime.bukkit.nocheat.NoCheatPlugin
|
||||
version: 0.5.8
|
||||
version: 0.5.9
|
||||
|
||||
|
@ -25,8 +25,8 @@ public class MovingCheck {
|
||||
private static final int NONE = 0;
|
||||
|
||||
// Limits for the moving check
|
||||
public static double movingDistanceLow = 0.05D;
|
||||
public static double movingDistanceMed = 0.15D;
|
||||
public static double movingDistanceLow = 0.1D;
|
||||
public static double movingDistanceMed = 2.0D;
|
||||
public static double movingDistanceHigh = 5.0D;
|
||||
|
||||
// Block types that may be treated specially
|
||||
|
@ -100,7 +100,7 @@ public class NoCheatConfiguration {
|
||||
movingLogOnly = c.getBoolean("moving.logonly", false);
|
||||
movingFreeMoves = c.getInt("moving.freemoves", 10);
|
||||
|
||||
if(movingFreeMoves < 5) movingFreeMoves = 5;
|
||||
if(movingFreeMoves < 10) movingFreeMoves = 10;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user