From 5b6fefa8e6abac3aaab37d4c8b039587b97cdca4 Mon Sep 17 00:00:00 2001 From: Li Date: Wed, 19 Feb 2025 18:03:31 +1300 Subject: [PATCH] Fix infinite recursion --- McCrypt/PackData/PEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/McCrypt/PackData/PEntry.cs b/McCrypt/PackData/PEntry.cs index 829d9f9..0c9aee1 100644 --- a/McCrypt/PackData/PEntry.cs +++ b/McCrypt/PackData/PEntry.cs @@ -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 uuids = new List(); if(File.Exists(WorldResourcePacksPath)) uuids.AddRange(Manifest.ReadWorldPackList(WorldResourcePacksPath));