mirror of
https://silica.codes/BedrockReverse/McTools.git
synced 2025-04-06 05:05:40 +12:00
Fix infinite recursion
This commit is contained in:
parent
1637fdf8b8
commit
5b6fefa8e6
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ namespace McCrypt.PackData
|
||||||
{
|
{
|
||||||
return Manifest.ReadDependancyUuids(this.ManifestPath);
|
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>();
|
List<String> uuids = new List<String>();
|
||||||
if(File.Exists(WorldResourcePacksPath)) uuids.AddRange(Manifest.ReadWorldPackList(WorldResourcePacksPath));
|
if(File.Exists(WorldResourcePacksPath)) uuids.AddRange(Manifest.ReadWorldPackList(WorldResourcePacksPath));
|
||||||
|
|
Loading…
Add table
Reference in a new issue