From 1c3ccf029a4ff90bcd500b65175e83e84a2cd302 Mon Sep 17 00:00:00 2001
From: Li
Date: Wed, 19 Feb 2025 18:15:41 +1300
Subject: [PATCH] Change it to use .Type
---
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 0c9aee1..baf3dee 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(Path.GetFileName(Path.GetDirectoryName(this.FilePath)) == "minecraftWorlds")
+ else if(this.Type == "minecraftWorlds")
{
List uuids = new List();
if(File.Exists(WorldResourcePacksPath)) uuids.AddRange(Manifest.ReadWorldPackList(WorldResourcePacksPath));