diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-03-29 20:41:38 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-03-29 20:41:38 -0400 |
| commit | fd89e36490da711ba611c1f7c8dda93a3de054f0 (patch) | |
| tree | e8c1114add718665c75bb90e7af90a9f38101815 /commands/ping.js | |
| parent | 84b7017c7016aea12339ec4a3ef2ba1bf0fb3872 (diff) | |
| download | DLAP-fd89e36490da711ba611c1f7c8dda93a3de054f0.tar.gz DLAP-fd89e36490da711ba611c1f7c8dda93a3de054f0.tar.bz2 DLAP-fd89e36490da711ba611c1f7c8dda93a3de054f0.zip | |
New command; Every Discord interation is async
Diffstat (limited to 'commands/ping.js')
| -rw-r--r-- | commands/ping.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/ping.js b/commands/ping.js index cbf5370..14071ac 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -26,6 +26,6 @@ export default { .setName('ping') .setDescription('Pong!'), async execute(interaction) { - return interaction.reply('Pong!'); + return await interaction.reply('Pong!'); }, };
\ No newline at end of file |
