From 4188953dc2ccf82ae9cfbe5e715b80a6669c6bc4 Mon Sep 17 00:00:00 2001 From: Corrie Blossom Kay Date: Wed, 3 Aug 2016 19:54:14 -0700 Subject: [PATCH] Updated default config Updated default config with default lang as en --- src/me/corriekay/pokegoutil/BlossomsPoGoManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/corriekay/pokegoutil/BlossomsPoGoManager.java b/src/me/corriekay/pokegoutil/BlossomsPoGoManager.java index 0b8fb02f..78f00dcc 100644 --- a/src/me/corriekay/pokegoutil/BlossomsPoGoManager.java +++ b/src/me/corriekay/pokegoutil/BlossomsPoGoManager.java @@ -41,7 +41,7 @@ public static void main(String[] args) throws Exception { if (!file.createNewFile()) { throw new FileAlreadyExistsException(file.getName()); } - config = new JSONObject("{\"login\":{},\"options\":{}}"); + config = new JSONObject("{\"login\":{},\"options\":{\"lang\":\"en\"}}"); Utilities.saveFile(file, config.toString(4)); } else { config = new JSONObject(Utilities.readFile(file));