Skip to content

Commit

Permalink
Move config folder to the root minecraft directory fixes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Nov 20, 2016
1 parent c75a92a commit fb600f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main-src/eu/ha3/matmos/game/mod/MAtMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void onLoad() {

// Load configuration from source
try {
config.setSource(new File(util().getModsFolder(), "matmos/userconfig.cfg").getCanonicalPath());
config.setSource(new File(util().getMcFolder(), "matmos/userconfig.cfg").getCanonicalPath());
config.load();
}
catch (IOException e) {
Expand Down

0 comments on commit fb600f7

Please sign in to comment.