diff --git a/discord/abc.py b/discord/abc.py index 2263facf1..c88383410 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -228,7 +228,6 @@ async def _handle_commands( return cmds = await channel.application_commands() - for cmd in cmds: # Handle faked parameters if type is not None and cmd.type != type: @@ -256,10 +255,6 @@ async def _handle_commands( yield cmd - cmd_ids = None - if len(cmds) < min(limit if limit else 25, 25) or len(cmds) == limit == 25: - return - async def _handle_message_search( destination: Union[Messageable, Guild],