Skip to content

Commit

Permalink
Updated default config
Browse files Browse the repository at this point in the history
Updated default config with default lang as en
  • Loading branch information
Chilled-Legumes committed Aug 4, 2016
1 parent beb87d5 commit 4188953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/me/corriekay/pokegoutil/BlossomsPoGoManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 4188953

Please sign in to comment.