]> git.cworth.org Git - turbot/commitdiff
Update hunt welcome message to refer to `/puzzle new`
authorCarl Worth <cworth@cworth.org>
Mon, 11 Jan 2021 18:09:38 +0000 (10:09 -0800)
committerCarl Worth <cworth@cworth.org>
Mon, 11 Jan 2021 18:09:38 +0000 (10:09 -0800)
Previously it was pointing the users at `/puzzle` which is no longer
the correct command to use.

turbot/events.py

index adf7c9e04853f0a3561bf96749af14e05b4157ee..4ea06841cb48d5f3427d0f67630ecc77b574839c 100644 (file)
@@ -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