Subject: | Plugins shouldn't send irc_* events from their own POE session |
This module as well as BasePoCoWrap and all your IRC plugins which
haven't yet been been modified to use either of those are calling
$irc->_send_event(). They shouldn't do that.
This is causing your plugins to send events (e.g. irc_google_calculator)
from their own POE session instead of the IRC component's session. This
means that event handlers won't be able to get the IRC component's
object via $_[SENDER]->get_heap().
Use send_event() instead of _send_event().