mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Don't build score info for bots, they don't parse it
This commit is contained in:
parent
b511b8f2f6
commit
91acf8a681
1 changed files with 5 additions and 0 deletions
|
@ -40,6 +40,11 @@ void DeathmatchScoreboardMessage( gentity_t *ent ) {
|
|||
gclient_t *cl;
|
||||
int numSorted, scoreFlags, accuracy, perfect;
|
||||
|
||||
// don't send scores to bots, they don't parse it
|
||||
if ( ent->r.svFlags & SVF_BOT ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// send the latest information on all clients
|
||||
string[0] = 0;
|
||||
stringlength = 0;
|
||||
|
|
Loading…
Reference in a new issue