1
0
Fork 0
mirror of synced 2024-06-27 18:50:35 +12:00

Changed the hangman description to reflect the current way phrases are chosen

This commit is contained in:
phxntxm 2017-01-05 12:13:22 -06:00
parent 6ec9b70c55
commit 7b55a6979f
2 changed files with 2 additions and 3 deletions

View file

@ -156,8 +156,7 @@ class Hangman:
@checks.custom_perms(send_messages=True) @checks.custom_perms(send_messages=True)
async def create_hangman(self, ctx): async def create_hangman(self, ctx):
"""This is used to create a new hangman game """This is used to create a new hangman game
Due to the fact that I might not be able to delete a message, I will PM you and ask for the phrase you want. A predefined phrase will be randomly chosen as the phrase to use
The phrase needs to be under 30 characters
EXAMPLE: !hangman start EXAMPLE: !hangman start
RESULT: This is pretty obvious .-.""" RESULT: This is pretty obvious .-."""

View file

@ -73,7 +73,7 @@ shard_count = global_config.get('shard_count', 1)
shard_id = global_config.get('shard_id', 0) shard_id = global_config.get('shard_id', 0)
# The default status the bot will use # The default status the bot will use
default_status = global_config.get("default_status", "") default_status = global_config.get("default_status", None)
# The URL that will be used to link to for the help command # The URL that will be used to link to for the help command
help_url = global_config.get("help_url", "") help_url = global_config.get("help_url", "")
# The rethinkdb hostname # The rethinkdb hostname