1
0
mirror of synced 2024-09-24 03:28:21 +02:00
This commit is contained in:
KillzXGaming 2022-10-22 11:05:26 -04:00
commit 94d7ab3bb1

View File

@ -494,6 +494,10 @@ namespace FirstPlugin
string ID = packageId.ToString("D" + 4);
string BlockFilePath = Path.Combine(PathFolder, $"sdf-{layer}-{ID}.sdfdata");
if (!File.Exists(BlockFilePath))
{
BlockFilePath = Path.Combine(PathFolder, $"sdf_{layer}_{ID}.sdfdata");
}
bool IsFile = !Name.Contains("dummy") && decompresedSize > 5;