fix for my own mistake.. yay

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1497 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2005-10-16 19:35:21 +00:00
parent 34b6814743
commit 9ca5cce92a
1 changed files with 2 additions and 2 deletions

View File

@ -3370,7 +3370,7 @@ void CL_PrintStandardMessage(char *msg)
// name parsing rules
if (v != begin && *(v-1) != ' ') // must be space before name
{
v = strstr(NULL, name);
v = strstr(v+len, name);
continue;
}
@ -3387,7 +3387,7 @@ void CL_PrintStandardMessage(char *msg)
if (sizeof(acceptedchars) == i)
{
v = strstr(NULL, name);
v = strstr(v+len, name);
continue; // no accepted char found
}
}