dolfies / discord.py-self

A fork of the popular discord.py for user accounts.
https://discordpy-self.rtfd.io/en/latest/
MIT License
683 stars 162 forks source link

missing slashcommands #372

Closed 5t0n1e closed 2 years ago

5t0n1e commented 2 years ago

Summary

When trying to loop through all slash commands of a channel their are a couple missing.

Reproduction Steps

When I try to loop through all possible slashcommands of a channel with the code below, it can't seem to find all slash commands of some bots. Is there anything I could do to get all slash commands?

async for cmd in channel.slash_commands():
    print(cmd)

Code

async for cmd in channel.slash_commands():
    print(cmd)

Expected Results

Loop through all possible slash commands.

Actual Results

Loop through a couple of slash commands.

System Information

Checklist

Additional Information

No response