Make usage more available on /start

This commit is contained in:
Simone Baracchi 2019-02-25 23:26:05 +01:00
parent dbad487b37
commit 4cefedac54
1 changed files with 2 additions and 4 deletions

View File

@ -68,7 +68,7 @@ def newgame_already_started_usage():
Now invite some players, make them join with `/player <character name>`, check your characters with `/show`, adjust your character sheet with `/update`, and roll dices with `/roll`.
For a more complete list of commands, see https://github.com/simonebaracchi/rpgbot."""
def start_in_private_msg_usage():
def start_usage():
return """Howdy, human.
I am a character sheet bot for Fate RPG.
To use my services, add me to a group, then start a new game with `/newgame <game name>`.
@ -359,9 +359,7 @@ def process_message(msg):
send(bot, chat_id, ret)
if command == '/start':
if is_group:
return
send(bot, chat_id, start_in_private_msg_usage())
send(bot, chat_id, start_usage())
db.close_connection(dbc)