IsSubPCKNode will now only print to the console when a file is a SubPCK file

This commit is contained in:
MattNL
2023-01-09 11:53:43 -05:00
parent bbaf7b965a
commit b0f44e79b3

View File

@@ -839,7 +839,7 @@ namespace PckStudio
bool isSubFile = conditions.Contains(true);
Console.WriteLine($"{nodePath} is{(isSubFile ? "" : " not")} a Sub-PCK File");
if(isSubFile) Console.WriteLine($"{nodePath} is a Sub-PCK File");
return isSubFile;
}