diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index cc98449..65634fd 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -155,11 +155,8 @@ class Commands(): def is_catchall(self, function, command_type): """Determine if function could be called with a rule match""" - rulematch = False - command_aliases = self.get_command_aliases - if '(.*)' in command_aliases: - rulematch = True - return rulematch + command_aliases = self.get_command_aliases(function, command_type) + return ('(.*)' in command_aliases) def get_command_aliases(self, function, command_type): if command_type == "command":