@ -283,7 +283,7 @@ class Bot(LoggingClass):
else :
else :
self . command_matches_re = None
self . command_matches_re = None
def get_commands_for_message ( self , require_mention , mention_rules , msg_prefix , msg , prefixes = [ ] ) :
def get_commands_for_message ( self , require_mention , mention_rules , msg_prefix , msg , prefixes = None ) :
"""
"""
Generator of all commands that a given message object triggers , based on
Generator of all commands that a given message object triggers , based on
the bots plugins and configuration .
the bots plugins and configuration .
@ -298,7 +298,7 @@ class Bot(LoggingClass):
msg_prefix : str
msg_prefix : str
The prefix to check the message starts with .
The prefix to check the message starts with .
msg : : class : ` disco . types . message . Message `
msg : : class : ` disco . types . message . Message `
The newly created or updated message object to parse / handle .
The message object to parse and find matching commands for .
prefixes : list [ string ]
prefixes : list [ string ]
A list of prefixes to check the message starts with ( combines with ` prefix ` )
A list of prefixes to check the message starts with ( combines with ` prefix ` )
@ -411,7 +411,10 @@ class Bot(LoggingClass):
bool
bool
Whether any commands where successfully triggered by the message .
Whether any commands where successfully triggered by the message .
"""
"""
custom_message_prefixes = self . config . commands_prefix_getter ( msg ) if self . config . commands_prefix_getter else [ ]
if not self . config . commands_require_mention and self . config . commands_prefix_getter :
custom_message_prefixes = self . config . commands_prefix_getter ( msg )
else :
custom_message_prefixes = [ ]
commands = list ( self . get_commands_for_message (
commands = list ( self . get_commands_for_message (
self . config . commands_require_mention ,
self . config . commands_require_mention ,