From e1b1df5ec3755addb72146861c3833b7624c81f3 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sat, 11 May 2019 11:07:29 +0300 Subject: [PATCH] - added missing newline to scriptstat CCMD output --- src/p_acs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_acs.cpp b/src/p_acs.cpp index 5d883019b..54ecfa707 100644 --- a/src/p_acs.cpp +++ b/src/p_acs.cpp @@ -10454,7 +10454,7 @@ CCMD (scriptstat) { for (auto Level : AllLevels()) { - Printf("Script status for %s", Level->MapName.GetChars()); + Printf("Script status for %s\n", Level->MapName.GetChars()); if (Level->ACSThinker == nullptr) { Printf("No scripts are running.\n");