From 75f458c3cda727eec38f65571db60e284893c2e7 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 11 Jan 2021 10:09:38 -0800 Subject: [PATCH] Update hunt welcome message to refer to `/puzzle new` Previously it was pointing the users at `/puzzle` which is no longer the correct command to use. --- turbot/events.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/turbot/events.py b/turbot/events.py index adf7c9e..4ea0684 100644 --- a/turbot/events.py +++ b/turbot/events.py @@ -123,7 +123,7 @@ def hunt_channel_created(turb, channel_name, channel_id): slack_send_message( turb.slack_client, channel_id, "Welcome to the channel for the {} hunt! ".format(hunt['name']) - + "Please wait a minute or two while I create some backend resources.") + + "Please wait a moment or two while I create some backend resources.") # Create a new folder within Google drive for the hunt hunt['folder_id'] = sheets_create_folder(turb, hunt['hunt_id']) @@ -146,7 +146,7 @@ def hunt_channel_created(turb, channel_name, channel_id): slack_send_message( turb.slack_client, channel_id, "Thank you for waiting. This hunt is now ready to begin! " - + "Use `/puzzle` to create puzzles for the hunt.") + + "Type `/puzzle new` to create puzzles for the hunt.") return lambda_success -- 2.43.0