Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Feb 19, 2024
1 parent 041eb0c commit 75921e5
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
package net.pistonmaster.soulfire.server.viaversion.platform;

import com.viaversion.viarewind.api.ViaRewindPlatform;

import java.io.File;
import java.nio.file.Path;
import java.util.logging.Logger;
import lombok.RequiredArgsConstructor;
Expand All @@ -37,4 +39,9 @@ public void init() {
public Logger getLogger() {
return logger;
}

@Override
public File getDataFolder() {
return dataFolder.toFile();
}
}

0 comments on commit 75921e5

Please sign in to comment.