Skip to content

Commit

Permalink
fix: wrong method name
Browse files Browse the repository at this point in the history
  • Loading branch information
NgLoader committed Jun 26, 2024
1 parent 354c4a2 commit 0e82da2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void deserialize() {
Path configPath = dataFolder.resolve("config.yml");

if (Files.notExists(configPath)) {
String configVersion = MinecraftVersion.getMajorVersion() + "." + MinecraftVersion.getMinorVersion();
String configVersion = MinecraftVersion.majorVersion() + "." + MinecraftVersion.minorVersion();

if (Files.notExists(dataFolder)) {
Files.createDirectories(dataFolder);
Expand Down

0 comments on commit 0e82da2

Please sign in to comment.