Fix infinite recursion

This commit is contained in:
Li 2025-02-19 18:03:31 +13:00
parent 1637fdf8b8
commit 5b6fefa8e6

View file

@ -83,7 +83,7 @@ namespace McCrypt.PackData
{
return Manifest.ReadDependancyUuids(this.ManifestPath);
}
else if(this.ProductType == "minecraftWorlds")
else if(Path.GetFileName(Path.GetDirectoryName(this.FilePath)) == "minecraftWorlds")
{
List<String> uuids = new List<String>();
if(File.Exists(WorldResourcePacksPath)) uuids.AddRange(Manifest.ReadWorldPackList(WorldResourcePacksPath));