BlockState: Module Load fixed

BlockState: Config default disabled
This commit is contained in:
Jascha Starke 2013-07-27 00:25:39 +02:00
parent 1ef29ff8e6
commit 61cb058575
2 changed files with 2 additions and 1 deletions

View file

@ -31,6 +31,7 @@ public class LimitedCreative extends Core {
addModule(new ModRegions(this));
addModule(new ModCmdBlocker(this));
addModule(new ModGameModePerm(this));
addModule(new ModBlockStates(this));
addModule(new FeatureMetrics(this));
listeners.addListener(new DependencyListener(this));

View file

@ -73,7 +73,7 @@ public class BlockStateConfig extends Configuration implements IConfigurationSub
*/
@IsConfigurationNode(order = 100)
public boolean getEnabled() {
return config.getBoolean("enabled", true);
return config.getBoolean("enabled", false);
}
/**