Jelajahi Sumber

* Changed some botnet_send_zapf_broad() lines to putallbots()
* Updated CREDITS


svn: 380

Bryan Drewery 22 tahun lalu
induk
melakukan
c43352d1c1
4 mengubah file dengan 6 tambahan dan 6 penghapusan
  1. 1 1
      doc/CREDITS
  2. 1 1
      src/cmds.c
  3. 1 1
      src/misc.c
  4. 3 3
      src/mod/update.mod/update.c

+ 1 - 1
doc/CREDITS

@@ -3,9 +3,9 @@ Wraith botpack by bryan, with credits and thanks to the following:
 
 Eggdrop team for developing such a great bot to code off of.
 Einride and ievil for taking eggdrop1.4.3 and making their very effecient botpack Ghost.
+ryguy for beta testing, providing code, finding bugs, and providing input.
 SFC for providing compile shells, continuous input, feature suggestions, and testing.
 xmage for beta testing.
-ryguy for beta testing, providing code, finding bugs, and providing input.
 passwd for beta testing, and his dedication to finding bugs.
 pgpkeys for finding bugs, and providing input.
 qFox for providing an mIRC $md5() alias, not requiring a dll or >6.03

+ 1 - 1
src/cmds.c

@@ -2938,7 +2938,7 @@ static void cmd_nettcl(struct userrec *u, int idx, char *msg)
 #endif /* S_PERMONLY */
   putlog(LOG_CMDS, "*", STR("#%s# nettcl %s"), dcc[idx].nick, msg);
   egg_snprintf(buf, sizeof buf, "mt %d %s", idx, msg);
-  botnet_send_zapf_broad(-1, botnetnick, NULL, buf);
+  putallbots(buf);
 
   debug1(STR("tcl: evaluate (.tcl): %s"), msg);
   code = Tcl_GlobalEval(interp, msg);

+ 1 - 1
src/misc.c

@@ -620,7 +620,7 @@ void putlog EGG_VARARGS_DEF(int, arg1)
         }
       }
     } else {
-      botnet_send_zapf_broad(-1, botnetnick, NULL, buf2);
+      putallbots(buf2);
     }
   }
 

+ 3 - 3
src/mod/update.mod/update.c

@@ -33,10 +33,10 @@ static void cancel_user_xfer(int, void *);
 
 #ifdef HUB
 int bupdating = 0;
-#endif
+#endif /* HUB */
 #ifdef LEAF
 int updated = 0;
-#endif
+#endif /* LEAF */
 
 /*
  *   Botnet commands
@@ -435,7 +435,7 @@ static void check_updates()
 
   //send out notice to update remote bots ...
   sprintf(buf, "nu? %d", egg_numver);
-  botnet_send_zapf_broad(-1, botnetnick, NULL, buf);
+  putallbots(buf);
 }
 #endif