From 67c44c3337bc0a1da023189f04418a1546b47cc4 Mon Sep 17 00:00:00 2001 From: asofold Date: Fri, 16 Nov 2012 10:51:17 +0100 Subject: [PATCH] Remove blockplace.fastplace.experimental. --- .../nocheatplus/checks/blockplace/BlockPlaceConfig.java | 2 -- src/fr/neatmonster/nocheatplus/config/ConfPaths.java | 1 - src/fr/neatmonster/nocheatplus/config/DefaultConfig.java | 1 - 3 files changed, 4 deletions(-) diff --git a/src/fr/neatmonster/nocheatplus/checks/blockplace/BlockPlaceConfig.java b/src/fr/neatmonster/nocheatplus/checks/blockplace/BlockPlaceConfig.java index 0de4eed4..a72f4ef4 100644 --- a/src/fr/neatmonster/nocheatplus/checks/blockplace/BlockPlaceConfig.java +++ b/src/fr/neatmonster/nocheatplus/checks/blockplace/BlockPlaceConfig.java @@ -75,7 +75,6 @@ public class BlockPlaceConfig extends ACheckConfig { public final ActionList directionActions; public final boolean fastPlaceCheck; - public final boolean fastPlaceExperimental; public final long fastPlaceInterval; public final ActionList fastPlaceActions; @@ -101,7 +100,6 @@ public class BlockPlaceConfig extends ACheckConfig { directionActions = data.getOptimizedActionList(ConfPaths.BLOCKPLACE_DIRECTION_ACTIONS, Permissions.BLOCKPLACE_DIRECTION); fastPlaceCheck = data.getBoolean(ConfPaths.BLOCKPLACE_FASTPLACE_CHECK); - fastPlaceExperimental = data.getBoolean(ConfPaths.BLOCKPLACE_FASTPLACE_EXPERIMENTAL); fastPlaceInterval = data.getLong(ConfPaths.BLOCKPLACE_FASTPLACE_INTERVAL); fastPlaceActions = data.getOptimizedActionList(ConfPaths.BLOCKPLACE_FASTPLACE_ACTIONS, Permissions.BLOCKPLACE_FASTPLACE); diff --git a/src/fr/neatmonster/nocheatplus/config/ConfPaths.java b/src/fr/neatmonster/nocheatplus/config/ConfPaths.java index c9e5d900..81cec5e1 100644 --- a/src/fr/neatmonster/nocheatplus/config/ConfPaths.java +++ b/src/fr/neatmonster/nocheatplus/config/ConfPaths.java @@ -153,7 +153,6 @@ public abstract class ConfPaths { private static final String BLOCKPLACE_FASTPLACE = BLOCKPLACE + "fastplace."; public static final String BLOCKPLACE_FASTPLACE_CHECK = BLOCKPLACE_FASTPLACE + "active"; - public static final String BLOCKPLACE_FASTPLACE_EXPERIMENTAL = BLOCKPLACE_FASTPLACE + "experimental"; public static final String BLOCKPLACE_FASTPLACE_INTERVAL = BLOCKPLACE_FASTPLACE + "interval"; public static final String BLOCKPLACE_FASTPLACE_ACTIONS = BLOCKPLACE_FASTPLACE + "actions"; diff --git a/src/fr/neatmonster/nocheatplus/config/DefaultConfig.java b/src/fr/neatmonster/nocheatplus/config/DefaultConfig.java index c0adf369..c1ad9729 100644 --- a/src/fr/neatmonster/nocheatplus/config/DefaultConfig.java +++ b/src/fr/neatmonster/nocheatplus/config/DefaultConfig.java @@ -128,7 +128,6 @@ public class DefaultConfig extends ConfigFile { set(ConfPaths.BLOCKPLACE_DIRECTION_ACTIONS, "cancel vl>10 log:bdirection:0:3:if cancel"); set(ConfPaths.BLOCKPLACE_FASTPLACE_CHECK, true); - set(ConfPaths.BLOCKPLACE_FASTPLACE_EXPERIMENTAL, true); set(ConfPaths.BLOCKPLACE_FASTPLACE_INTERVAL, 95L); set(ConfPaths.BLOCKPLACE_FASTPLACE_ACTIONS, "cancel vl>100 log:fastplace:3:5:cif cancel");