Remove blockplace.fastplace.experimental.

This commit is contained in:
asofold 2012-11-16 10:51:17 +01:00
parent a6c943121f
commit 67c44c3337
3 changed files with 0 additions and 4 deletions

View File

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

View File

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

View File

@ -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");