diff --git a/core/AEConfig.java b/core/AEConfig.java index 56b5434f..b7f207cf 100644 --- a/core/AEConfig.java +++ b/core/AEConfig.java @@ -270,7 +270,7 @@ public class AEConfig extends Configuration implements IConfigurableObject, ICon { if ( feature.isVisible() ) { - if ( get( "Features." + feature.getCategory(), feature.name(), feature.defaultVaue() ).getBoolean( feature.defaultVaue() ) ) + if ( get( "Features." + feature.getCategory(), feature.name(), feature.defaultValue() ).getBoolean( feature.defaultValue() ) ) featureFlags.add( feature ); } else diff --git a/core/features/AEFeature.java b/core/features/AEFeature.java index 75d77c20..163a6f9e 100644 --- a/core/features/AEFeature.java +++ b/core/features/AEFeature.java @@ -75,7 +75,7 @@ public enum AEFeature return Category; } - public Boolean defaultVaue() + public Boolean defaultValue() { return defValue; }