From b0f44e79b3401ad08f48ca72ce6fe5f7f62acf84 Mon Sep 17 00:00:00 2001 From: MattNL Date: Mon, 9 Jan 2023 11:53:43 -0500 Subject: [PATCH] IsSubPCKNode will now only print to the console when a file is a SubPCK file --- PCK-Studio/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }