Published
- 1 min read
discord.py aliases
The solution for this is noted below
discord.py aliases
Solution
@commands.command(name='test', aliases=['testcommand', 'testing'])
async def test(self, ctx):
await ctx.send("This a test command")
#will run with either 'test, testcommand or testing
Try other methods by searching on the site. That is if this doesn’t work