mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 21:02:38 +00:00
Prefix command change to accommodate guild prefixes
This commit is contained in:
parent
8b0d3d5bb3
commit
3fa251114a
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class Utils:
|
|||
@commands.command(aliases=['pre'], brief='List bot prefixes', description='Shows all used prefixes')
|
||||
@checks.del_ctx()
|
||||
async def prefix(self, ctx):
|
||||
await ctx.send('**Prefix:** `{}`'.format(u.config['prefix']))
|
||||
await ctx.send('**Prefix:** `{}`'.format('` or `'.join(u.settings['prefixes'][ctx.guild.id] if ctx.guild.id in u.settings['prefixes'] else u.config['prefix'])))
|
||||
await ctx.message.add_reaction('\N{WHITE HEAVY CHECK MARK}')
|
||||
|
||||
@commands.group(name=',send', aliases=[',s'], hidden=True)
|
||||
|
|
Loading…
Reference in a new issue