mostly a revert to values from 0.5.7

This commit is contained in:
Evenprime 2011-02-27 18:50:21 +01:00
parent 2bf722a5f9
commit eae6bdc967
3 changed files with 4 additions and 4 deletions

View File

@ -3,5 +3,5 @@ name: NoCheatPlugin
author: Evenprime
main: cc.co.evenprime.bukkit.nocheat.NoCheatPlugin
version: 0.5.8
version: 0.5.9

View File

@ -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

View File

@ -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;
}
/**