mirror of
https://github.com/stijndcl/didier.git
synced 2026-04-07 15:48:29 +02:00
Fix error in rev
This commit is contained in:
parent
fe843ad4f0
commit
84b43ade6a
1 changed files with 2 additions and 2 deletions
|
|
@ -48,8 +48,8 @@ class Oneliners(commands.Cog):
|
|||
@commands.command(name="Reverse", aliases=["Rev"], usage="[Tekst]")
|
||||
@commands.check(checks.allowedChannels)
|
||||
@help.Category(category=Category.Other)
|
||||
async def reverse(self, ctx, *args):
|
||||
await ctx.send(" ".join(args)[::-1])
|
||||
async def reverse(self, ctx, *, args):
|
||||
await ctx.send(args[::-1])
|
||||
|
||||
@commands.command(name="Government", aliases=["Gov", "Regering"])
|
||||
@commands.check(checks.allowedChannels)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue