From 057c60f46f956874af713b3501e360c9c593e1e1 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 6 May 2017 04:56:02 +1000 Subject: [PATCH] Only show playing message if the client is actually a player --- qcsrc/server/client.qc | 1 + 1 file changed, 1 insertion(+) diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index a9413972a..798314159 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -1953,6 +1953,7 @@ void Join(entity this) PutClientInServer(this); + if(IS_PLAYER(this)) if(teamplay && this.team != -1) Send_Notification(NOTIF_ALL, NULL, MSG_INFO, APP_TEAM_NUM(this.team, INFO_JOIN_PLAY_TEAM), this.netname); else -- 2.39.2