From fa65a9de65fd27629758edf65aef6a265c3222f0 Mon Sep 17 00:00:00 2001 From: Drew Tingen Date: Wed, 6 Jul 2022 15:40:48 -0400 Subject: [PATCH] fix: Fix console command responses in Simpl runtime environment --- ICD.Common.Utils/IcdConsole.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ICD.Common.Utils/IcdConsole.cs b/ICD.Common.Utils/IcdConsole.cs index 9d9df2b..3e9d3f2 100644 --- a/ICD.Common.Utils/IcdConsole.cs +++ b/ICD.Common.Utils/IcdConsole.cs @@ -110,10 +110,10 @@ namespace ICD.Common.Utils { PrintLine(message); } + return; } -#else - PrintLine(message); #endif + PrintLine(message); } public static void PrintLine(string message)