You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The self.terminate flag in the XMPPModule class should be set to True when the same message should not be passed to any more modules.
And example of this is the Quotes module, where it perceives the command !quote. Other modules probably won't need to receive this, so setting self.terminate = True after the command is handled prevents any other module from receiving this message, such as Haiku or Irc.
The text was updated successfully, but these errors were encountered:
The
self.terminate
flag in theXMPPModule
class should be set toTrue
when the same message should not be passed to any more modules.And example of this is the
Quotes
module, where it perceives the command!quote
. Other modules probably won't need to receive this, so settingself.terminate = True
after the command is handled prevents any other module from receiving this message, such asHaiku
orIrc
.The text was updated successfully, but these errors were encountered: