Skip to content

Commit

Permalink
fix: failed to read map data on case-insensitive operating system
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunel committed Dec 12, 2022
1 parent ba61d6b commit 54b9e4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.hyun</groupId>
<artifactId>CraftAMap</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<name>CraftAMap</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/hyun/craftamap/CraftAMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static CraftAMap getInstance() {
@Override
public void onEnable() {
// Plugin startup logic
File mapDataFolder = new File(Objects.requireNonNull(getDataFolder()), "mapdata");
File mapDataFolder = new File(Objects.requireNonNull(getDataFolder()), "mapData");
if(!mapDataFolder.exists()) {
mapDataFolder.mkdirs();
}
Expand Down

0 comments on commit 54b9e4b

Please sign in to comment.