blob: 95700d877b5714316bda7f759678b2c99a49998d [file] [log] [blame] [raw]
package gamax92.ocsymon;
import net.minecraftforge.common.config.Configuration;
public class SymonConfig {
public static boolean busError = false;
public static void loadConfig(Configuration config) {
config.load();
busError = config.get(Configuration.CATEGORY_GENERAL, "busError", false).getBoolean();
if (config.hasChanged())
config.save();
}
}