diff --git a/pycord/multicog/__init__.py b/pycord/multicog/__init__.py index 224a165..131bbe5 100644 --- a/pycord/multicog/__init__.py +++ b/pycord/multicog/__init__.py @@ -60,10 +60,8 @@ def _add_to_group( """A helper funcion to change attributes of a command to match those of the target group's.""" index = multicog_commands.index(command) - command.parent, command.guild_ids = ( - group, - group.guild_ids, - ) + command.parent = group + command.guild_ids = group.guild_ids group.add_command(command) multicog_commands[index] = command