Skip to content

Commit

Permalink
Save multiblock file if it DOESNT exist
Browse files Browse the repository at this point in the history
  • Loading branch information
esotericenderman committed Aug 12, 2024
1 parent b7919a8 commit 5a57e6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void save() {
return;
}

if (multiblocksFile.exists()) {
if (!multiblocksFile.exists()) {
plugin.saveResource(multiblocksResourceFilePath, false);
}

Expand Down

0 comments on commit 5a57e6b

Please sign in to comment.