public static void loadConfig(String filepath, String version) throws IOException {
File file = FileMgmt.CheckYMLExists(new File(filepath));
if (file != null) {
// read the config.yml into memory
config = new CommentedConfiguration(file);
if(!config.load())
System.out.print("Failed to load Config!");
setDefaults(version, file);