Skip to content

Commit

Permalink
Version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
CubBossa committed Oct 25, 2022
1 parent 03192b8 commit f180355
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.cubbossa</groupId>
<artifactId>PathFinder</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/de/cubbossa/pathfinder/PathPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ public void onLoad() {

CommandAPI.onLoad(new CommandAPIConfig()
.verboseOutput(configuration.isVerbose())
.useLatestNMSVersion(true)
.initializeNBTAPI(NBTContainer.class, NBTContainer::new));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public SqliteDatabase(File file) {

public void connect(Runnable initial) throws IOException {
if (!file.exists()) {
file.mkdirs();
file.getParentFile().mkdirs();
file.createNewFile();

initial.run();
Expand Down

0 comments on commit f180355

Please sign in to comment.