Skip to content

Commit

Permalink
Merge pull request #36 from MrVoltz/prop-file-fix
Browse files Browse the repository at this point in the history
fix propFile creation
  • Loading branch information
Michael Brunner authored Apr 14, 2018
2 parents da5211f + a3e79e3 commit 6220b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/me/grax/jbytemod/res/Options.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void save() {
new Thread(() -> {
try {
if(!propFile.exists()) {
propFile.mkdirs();
propFile.getParentFile().mkdirs();
propFile.createNewFile();
JByteMod.LOGGER.log("Prop file doesn't exist, creating.");
}
Expand Down

0 comments on commit 6220b1c

Please sign in to comment.