Howdy folks. Really new to tcl and eggdrop and struggling a bit. I have a bind join like so:
bind join - * [namespace current]::join_proc
In my join_proc I do this:
putlog "Recieved $user $handle $chan"
Upon doing a /part followed by a /join in my irc client, I get two lines in the log. Any idea why my one join would trigger the proc twice? Also, I'm certain it is the same "/join" command doing it.
Join-bindings are stackable, so most likely you've got two identical bindings. Try restarting your eggdrop (not .rehash), and see if the behavior persists.