diff --git a/PCK-Studio/MainForm.cs b/PCK-Studio/MainForm.cs index 578ae699..6dd6aef1 100644 --- a/PCK-Studio/MainForm.cs +++ b/PCK-Studio/MainForm.cs @@ -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; }