From 5aabde17124c6e533fa29120b36d952c1e46e49f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 24 May 2022 20:41:44 +0200 Subject: [PATCH] - fixed parsing issues in secret hint system. --- source/core/secrets.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/core/secrets.cpp b/source/core/secrets.cpp index ae8e5397c..55c68bcec 100644 --- a/source/core/secrets.cpp +++ b/source/core/secrets.cpp @@ -90,7 +90,9 @@ CCMD(secret) if (!foundsome) { FString levelname; - if (thislevel) levelname.Format("%s - %s", mapname, currentLevel->name.GetChars()); + auto cc = currentLevel->name.GetChars(); + if (*cc == '$') cc = GStrings[cc + 1]; + if (thislevel) levelname.Format("%s - %s", mapname, cc); else levelname = mapname; Printf(TEXTCOLOR_YELLOW "%s\n", levelname.GetChars()); size_t llen = levelname.Len(); @@ -107,7 +109,7 @@ CCMD(secret) if (readbuffer[0] != '[') { linebuild += readbuffer; - if (linebuild.Len() < 1023 || linebuild[1022] == '\n') + if (linebuild.Len() < 10239 || linebuild[10238] == '\n') { // line complete so print it. linebuild.Substitute("\r", "");