?register now tells the user about help
parent
c3b10d2ad9
commit
135aabb248
|
@ -25,7 +25,8 @@ class Add_Commands:
|
||||||
try:
|
try:
|
||||||
player_name = get_nickname(ctx.message.author, self.bot.special_users)
|
player_name = get_nickname(ctx.message.author, self.bot.special_users)
|
||||||
self.bot.bot_commands.register(player_name, ctx.message.author.id)
|
self.bot.bot_commands.register(player_name, ctx.message.author.id)
|
||||||
await ctx.send('{}, you have been added to the database.'.format(ctx.message.author.mention))
|
await ctx.send('{}, you have been added to the database. Use ?help to see all the commands this bot can do.'
|
||||||
|
.format(ctx.message.author.mention))
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
raise NotOnServerError
|
raise NotOnServerError
|
||||||
except PlayerInDBError:
|
except PlayerInDBError:
|
||||||
|
|
Loading…
Reference in New Issue