unitycoders / uc_pircbotx

A bot for #unity-coders using pircbotx
GNU General Public License v3.0
3 stars 2 forks source link

private message thing #35

Closed velus closed 10 years ago

velus commented 10 years ago

the bot dont reconise it being private messaged and will not respond to a private message

webpigeon commented 10 years ago

According to the PIRCBotX javadoc, Private messages from users are handled by the onPrivateMessage callback. This is a problem as the event processor cannot handle a OnPrivateMessageEvent event. In order for it to be able to do this, it and all commands which rely on it would need to be rewritten to use something which is generic (interface with standardised .reply, etc... methods)

I will create a branch to investigate this.