Parcourir la source

Joining from getin_request is fine during burst, it will just queue.

Bryan Drewery il y a 7 ans
Parent
commit
2cd9c30d6f
2 fichiers modifiés avec 1 ajouts et 5 suppressions
  1. 1 0
      doc/UPDATES.md
  2. 0 5
      src/mod/irc.mod/irc.cc

+ 1 - 0
doc/UPDATES.md

@@ -11,6 +11,7 @@
     clients who are opped in 'set homechan'.
   * Some small performance improvements.
   * CPRIVMSG/CNOTICE/TIME/TOPIC/OPER should end connection bursting on ratbox.
+  * Fix server connect bursting for joining channels with help from other bots.
 
 # maint
   * Clear FiSH keys when a client quits.

+ 0 - 5
src/mod/irc.mod/irc.cc

@@ -678,11 +678,6 @@ getin_request(char *botnick, char *code, char *par)
     return;
   }
 
-  if (connect_bursting) {
-    putlog(LOG_GETIN, "*", "%sreq from %s/%s %s %s - I'm in connect burst mode.", type, botnick, nick, desc, chan->dname);
-    return;
-  }
-
   if (server_lag > lag_threshold) {
     putlog(LOG_GETIN, "*", "%sreq from %s/%s %s %s - I'm too lagged", type, botnick, nick, desc, chan->dname);
     return;