1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-12-24 14:27:27 +00:00

Included custom destination in hi command

This commit is contained in:
Myned 2017-10-17 18:02:31 -04:00
parent 5312e7a18b
commit be805f9bb2

View file

@ -23,7 +23,9 @@ class Info:
# await ctx.send(embed=embed) # await ctx.send(embed=embed)
@commands.command(hidden=True) @commands.command(hidden=True)
async def hi(self, ctx): async def hi(self, ctx, *args):
dest = u.get_args(ctx, args)
hello = 'Hewwo, {}.'.format(ctx.author.mention) hello = 'Hewwo, {}.'.format(ctx.author.mention)
if ctx.author.id == checks.owner_id: if ctx.author.id == checks.owner_id:
hello += '.. ***Master.*** uwu' hello += '.. ***Master.*** uwu'
@ -31,7 +33,7 @@ class Info:
hello = '{} **Admin** {}'.format(hello[:7], hello[7:]) hello = '{} **Admin** {}'.format(hello[:7], hello[7:])
elif ctx.author.guild_permissions.ban_members: elif ctx.author.guild_permissions.ban_members:
hello = '{} **Mod** {}'.format(hello[:7], hello[7:]) hello = '{} **Mod** {}'.format(hello[:7], hello[7:])
await ctx.send(hello) await dest.send(hello)
@commands.group(name='info', aliases=['i']) @commands.group(name='info', aliases=['i'])
async def info(self, ctx): async def info(self, ctx):