?register now tells the user about help

doc_update
Joey Hines 2018-09-13 16:02:52 -05:00
parent c3b10d2ad9
commit 135aabb248
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ class Add_Commands:
try:
player_name = get_nickname(ctx.message.author, self.bot.special_users)
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:
raise NotOnServerError
except PlayerInDBError: