Typo defaultVaue
This commit is contained in:
parent
8a21b5ab55
commit
63331d8d49
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -75,7 +75,7 @@ public enum AEFeature
|
|||
return Category;
|
||||
}
|
||||
|
||||
public Boolean defaultVaue()
|
||||
public Boolean defaultValue()
|
||||
{
|
||||
return defValue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue