diff options
Diffstat (limited to 'src/game/g_combat.c')
-rw-r--r-- | src/game/g_combat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 99cee2dc..aadec5d2 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -352,7 +352,7 @@ void player_die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int } } - Cmd_Score_f( self ); // show scores + ScoreboardMessage( self ); // show scores // send updated scores to any clients that are following this one, // or they would get stale scoreboards @@ -368,7 +368,7 @@ void player_die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int continue; if( client->sess.spectatorClient == self->s.number ) - Cmd_Score_f( g_entities + i ); + ScoreboardMessage( g_entities + i ); } self->client->pers.classSelection = PCL_NONE; //TA: reset the classtype |