mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-01-18 21:51:37 +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;
|
gclient_t *cl;
|
||||||
int numSorted, scoreFlags, accuracy, perfect;
|
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
|
// send the latest information on all clients
|
||||||
string[0] = 0;
|
string[0] = 0;
|
||||||
stringlength = 0;
|
stringlength = 0;
|
||||||
|
|
Loading…
Reference in a new issue