aboutsummaryrefslogtreecommitdiff
path: root/commands/ping.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-03-28 17:42:57 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-03-28 17:42:57 -0400
commit0f5a1a252964861e149a0d784a90f0ad74aa09cb (patch)
treee97d965337b3744290b0d05f5313425a53a92f62 /commands/ping.js
parent95870931e77a26a8d50ff3630bf387c923e61a2d (diff)
downloadDLAP-0f5a1a252964861e149a0d784a90f0ad74aa09cb.tar.gz
DLAP-0f5a1a252964861e149a0d784a90f0ad74aa09cb.tar.bz2
DLAP-0f5a1a252964861e149a0d784a90f0ad74aa09cb.zip
Merged the join command
Diffstat (limited to 'commands/ping.js')
-rw-r--r--commands/ping.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/ping.js b/commands/ping.js
index b3fccb7..cbf5370 100644
--- a/commands/ping.js
+++ b/commands/ping.js
@@ -24,7 +24,7 @@ import { SlashCommandBuilder } from '@discordjs/builders'
export default {
data: new SlashCommandBuilder()
.setName('ping')
- .setDescription('Replies with Pong!'),
+ .setDescription('Pong!'),
async execute(interaction) {
return interaction.reply('Pong!');
},