diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 6af996221..ea67ea719 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -1180,6 +1180,8 @@ class GroupMixin: return self.all_commands.get(name) names = name.split() + if not names: + return None obj = self.all_commands.get(names[0]) if not isinstance(obj, GroupMixin): return obj