Fixed a bug with loading setting.

This commit is contained in:
AlgorithmX2 2013-12-29 23:52:36 -06:00
parent 576d8c2747
commit cc43396066

View file

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