From d7d591bbfe9d71778b01726b8b68542da17979ba Mon Sep 17 00:00:00 2001 From: bdistin Date: Thu, 12 Oct 2017 15:14:12 -0500 Subject: [PATCH] ugh, template code bug 2 --- tutorials/RichDisplay.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/RichDisplay.md b/tutorials/RichDisplay.md index 850f7bb942..65dd4bf8f1 100644 --- a/tutorials/RichDisplay.md +++ b/tutorials/RichDisplay.md @@ -94,5 +94,5 @@ To handle whether or not a user should trigger an action when interacting with t A simple example for this would be a filter that only allows the user who executes the command to interact with it: ```javascript -display.run(msg.send('Loading slideshow...'), { filter: (reaction, user) => user === msg.author }); +display.run(await msg.send('Loading slideshow...'), { filter: (reaction, user) => user === msg.author }); ```