]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't show the JOIN_PREVENT message to CA players; also reduce the antispam delay...
authorterencehill <piuntn@gmail.com>
Tue, 12 May 2020 12:07:46 +0000 (14:07 +0200)
committerterencehill <piuntn@gmail.com>
Tue, 12 May 2020 12:07:46 +0000 (14:07 +0200)
qcsrc/server/client.qc

index 6feb1cda3b7d486446a4c8597253e69a33378bf6..0326d19877e834702092c85c9e992665bddad2c5 100644 (file)
@@ -1989,11 +1989,11 @@ int nJoinAllowed(entity this, entity ignore)
        else if(currentlyPlaying < player_limit)
                free_slots = min(maxclients - totalClients, player_limit - currentlyPlaying);
 
-       static float join_prevent_msg_time = 0;
-       if(this && ignore && !free_slots && time > join_prevent_msg_time)
+       static float msg_time = 0;
+       if(this && !this.caplayer && ignore && !free_slots && time > msg_time)
        {
                Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_JOIN_PREVENT);
-               join_prevent_msg_time = time + 3;
+               msg_time = time + 0.5;
        }
 
        return free_slots;