This commit is contained in:
parent
4e196a445a
commit
985a48f02e
1 changed files with 2 additions and 1 deletions
|
@ -79,7 +79,8 @@ public class ModFileResourcePack extends AbstractResourcePack
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Path root = modFile.getLocator().findPath(modFile, type.getDirectoryName()).toAbsolutePath();
|
Path root = modFile.getLocator().findPath(modFile, type.getDirectoryName()).toAbsolutePath();
|
||||||
Path inputPath = root.resolve(pathIn);
|
Path inputPath = root.getFileSystem().getPath(pathIn);
|
||||||
|
|
||||||
return Files.walk(root).
|
return Files.walk(root).
|
||||||
map(path -> root.relativize(path.toAbsolutePath())).
|
map(path -> root.relativize(path.toAbsolutePath())).
|
||||||
filter(path -> path.getNameCount() > 1 && path.getNameCount() - 1 <= maxDepth). // Make sure the depth is within bounds, ignoring domain
|
filter(path -> path.getNameCount() > 1 && path.getNameCount() - 1 <= maxDepth). // Make sure the depth is within bounds, ignoring domain
|
||||||
|
|
Loading…
Reference in a new issue