Merge pull request #8951 from furo321/fix-capture-count

Fix captures not being counted for certain names
This commit is contained in:
Dennis Felsing 2024-09-15 06:13:40 +00:00 committed by GitHub
commit 4fe956dffc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -102,7 +102,7 @@ void CStatboard::OnMessage(int MsgType, void *pRawMsg)
if(t <= p) if(t <= p)
return; return;
str_utf8_truncate(aName, sizeof(aName), p, t - p); str_truncate(aName, sizeof(aName), p, t - p);
for(int i = 0; i < MAX_CLIENTS; i++) for(int i = 0; i < MAX_CLIENTS; i++)
{ {