Skip to content

Commit

Permalink
Use .sqlite3 extension for db file to be specific
Browse files Browse the repository at this point in the history
  • Loading branch information
cjburkey01 committed May 11, 2024
1 parent 9cca6f9 commit acb2d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cjburkey/claimchunk/ClaimChunk.java
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ private boolean initDataHandler() {
if (dataHandler == null) {
dataHandler =
new JournaledDataHandler(
new File(getDataFolder(), "/data/claimAndPlayerData.sqlite"));
new File(getDataFolder(), "/data/claimAndPlayerData.sqlite3"));
}
Utils.debug("Using data handler \"%s\"", dataHandler.getClass().getName());
try {
Expand Down

0 comments on commit acb2d19

Please sign in to comment.