diff options
author | stolenvw <stolenvw@hotmail.com> | 2021-05-07 18:09:12 -0400 |
---|---|---|
committer | stolenvw <stolenvw@hotmail.com> | 2021-05-07 18:09:12 -0400 |
commit | 243495480e880a86d1a4496d132d1ad552ebfb29 (patch) | |
tree | f216d5e4594cdc30691f3cdf9051710fad376c8e /code/botcmds | |
parent | 79e5396d15f10e358ae95ba4cff8d401bc45ff22 (diff) |
Added code for showing percent of world explored. Will not show right on an existing world
Diffstat (limited to 'code/botcmds')
-rw-r--r-- | code/botcmds/helpcmds.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/botcmds/helpcmds.py b/code/botcmds/helpcmds.py index aa32dcb..2cf899f 100644 --- a/code/botcmds/helpcmds.py +++ b/code/botcmds/helpcmds.py @@ -45,11 +45,11 @@ class Help(commands.Cog): if ctx.channel.id == config.LOGCHAN_ID or commands.is_owner(): return True - @commands.command() + @commands.command(hidden=True) @commands.check(chancheck) # @commands.bot_has_permissions(add_reactions=True,embed_links=True) async def help(self, ctx, *input): - """Shows all modules of that bot""" + """Shows all modules of the bot""" # !SET THOSE VARIABLES TO MAKE THE COG FUNCTIONAL! prefix = config.BOT_PREFIX |