Browse Source

Fix logic to allow 5

Bryan Drewery 14 năm trước cách đây
mục cha
commit
6b79797633
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/conf.c

+ 1 - 1
src/conf.c

@@ -697,7 +697,7 @@ readconf(const char *fname, int bits)
     }
   }                             /* while(fgets()) */
 
-  if (bots >= 5)
+  if (bots > 5)
     werr(ERR_TOOMANYBOTS);
 
   delete stream;