mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
b141cd3d99
Co-authored-by: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
15 lines
827 B
Diff
15 lines
827 B
Diff
--- a/net/minecraft/server/packs/PathPackResources.java
|
|
+++ b/net/minecraft/server/packs/PathPackResources.java
|
|
@@ -103,6 +103,12 @@
|
|
try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path)) {
|
|
for (Path path2 : directoryStream) {
|
|
String string = path2.getFileName().toString();
|
|
+ // Paper start - Improve logging and errors
|
|
+ if (!Files.isDirectory(path2)) {
|
|
+ LOGGER.error("Invalid directory entry: {} in {}.", string, this.root, new java.nio.file.NotDirectoryException(string));
|
|
+ continue;
|
|
+ }
|
|
+ // Paper end - Improve logging and errors
|
|
if (ResourceLocation.isValidNamespace(string)) {
|
|
set.add(string);
|
|
} else {
|