diff --git a/proxy/src/main/java/com/velocitypowered/proxy/util/FileSystemUtils.java b/proxy/src/main/java/com/velocitypowered/proxy/util/FileSystemUtils.java index 167ee47b0..353e638fd 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/util/FileSystemUtils.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/util/FileSystemUtils.java @@ -48,7 +48,7 @@ public class FileSystemUtils { .getProtectionDomain().getCodeSource().getLocation().getPath()); if (file.isFile()) { // jar - try (FileSystem fileSystem = FileSystems.newFileSystem(file.toPath(), null)) { + try (FileSystem fileSystem = FileSystems.newFileSystem(file.toPath(), (ClassLoader) null)) { Path toVisit = fileSystem.getPath(path.toString()); if (Files.exists(toVisit)) { consumer.accept(toVisit);