Fix #7969: limit recursion during alias execution

This commit is contained in:
glx
2020-02-01 22:08:05 +01:00
committed by glx22
parent ac7cc18ab9
commit b5d56559d2
2 changed files with 12 additions and 6 deletions

View File

@@ -28,7 +28,7 @@ void IConsoleWarning(const char *string);
void IConsoleError(const char *string);
/* Parser */
void IConsoleCmdExec(const char *cmdstr);
void IConsoleCmdExec(const char *cmdstr, const uint recurse_count = 0);
bool IsValidConsoleColour(TextColour c);