BlockState: Module Load fixed
BlockState: Config default disabled
This commit is contained in:
parent
1ef29ff8e6
commit
61cb058575
2 changed files with 2 additions and 1 deletions
|
@ -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));
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue