From 135aabb248828905f2930f5df1caf5d6d91819f3 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Thu, 13 Sep 2018 16:02:52 -0500 Subject: [PATCH] ?register now tells the user about help --- geoffrey/cogs/Add_Commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/geoffrey/cogs/Add_Commands.py b/geoffrey/cogs/Add_Commands.py index 2861a1b..1cf39c4 100644 --- a/geoffrey/cogs/Add_Commands.py +++ b/geoffrey/cogs/Add_Commands.py @@ -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: