[Fixed] broadcasted messages error
Sometimes in my eggdrop window i get an error regarding ioBinfo(admin) .. no such array ...
Looking at iobanana.tcl i found this
################################################## ##############################
# BROADCAST TO ALL ADMINS #
################################################## ##############################
proc ioB:broadcast {from cmd text} {
global ioBinfo
foreach admin $ioBinfo(admin) {
but variable is called ioBinfo(admins) so iI guess u need to add an "s" on that line. (notice the difference between admin and admins).
|