Revision | 3f74636efbabbe43811b7781595575c0db39905f (tree) |
---|---|
Time | 2022-02-07 08:56:45 |
Author | Adam Kaminski <kaminskiadam9@gmai...> |
Commiter | Adam Kaminski |
Fixed: pointer in BOTCMD_DoChatStringSubstitutions was checked incorrectly.
@@ -628,7 +628,7 @@ | ||
628 | 628 | FString Output; |
629 | 629 | const char *pszInString = Input.GetChars(); |
630 | 630 | |
631 | - for ( ; pszInString != 0; pszInString++ ) | |
631 | + for ( ; *pszInString != 0; pszInString++ ) | |
632 | 632 | { |
633 | 633 | // Continue to copy the instring to the outstring until we hit a '$'. |
634 | 634 | if ( *pszInString != '$' ) |