From 184ecad473d3cbcad5422fa409c48e9ceccc64c0 Mon Sep 17 00:00:00 2001 From: qrtDaniil <58003418+qrtDaniil@users.noreply.github.com> Date: Thu, 31 Oct 2024 21:17:16 +0000 Subject: [PATCH] Update SystemConsoleManager.cs --- Robust.Server/Console/SystemConsoleManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robust.Server/Console/SystemConsoleManager.cs b/Robust.Server/Console/SystemConsoleManager.cs index f1f51a98519..4e92c603a2f 100644 --- a/Robust.Server/Console/SystemConsoleManager.cs +++ b/Robust.Server/Console/SystemConsoleManager.cs @@ -278,7 +278,7 @@ public void Print(string text) public void DrawCommandLine() { - if (Con.WindowWidth <= 0) return; + if (Con.WindowWidth <= 0) return; ClearCurrentLine(); Con.SetCursorPosition(0, Con.CursorTop); Con.Write("> " + currentBuffer);