Fixed a bug with loading setting.

This commit is contained in:
AlgorithmX2 2013-12-29 23:52:36 -06:00
parent 576d8c2747
commit cc43396066
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class ConfigManager implements IConfigManager
for (Enum e : Settings.keySet())
{
tagCompound.setString( e.name(), e.name() );
tagCompound.setString( e.name(), Settings.get( e ).toString() );
}
}