فهرست منبع

Fix +take to work

Bryan Drewery 10 سال پیش
والد
کامیت
b9406f8357
2فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 0
      doc/UPDATES.md
  2. 0 1
      src/mod/irc.mod/chan.cc

+ 1 - 0
doc/UPDATES.md

@@ -2,6 +2,7 @@
   * Update server list, 'set -yes servers -' and 'set -yes servers6 -' to get new list.
   * Fix Linux binary compat on FreeBSD due to lack of ptrace(2).
   * Avoid warnings from Debian's FORTIFY_SOURCE
+  * Remove an old +take limiter that was forgotten.
 
 # 1.4.6
   * Disable demo TCL support by default to prevent confusion during build.

+ 0 - 1
src/mod/irc.mod/chan.cc

@@ -1481,7 +1481,6 @@ do_take(struct chanset_t *chan)
     work[work_len] = 0;
 
     // Prevent excess flood
-    if (!HAVE_F1) usleep(1000 * 500);
     if (++lines >= max_lines) {
       tputs(serv, work, work_len);
       work[0] = 0;