From bbdaa03aced2b91fc58dc2f751da77453ba26d37 Mon Sep 17 00:00:00 2001 From: samarmeena Date: Tue, 5 Dec 2023 19:40:57 +0530 Subject: [PATCH] refactor: ping response --- 7-hot-module-reload/src/commands/slashes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-hot-module-reload/src/commands/slashes.ts b/7-hot-module-reload/src/commands/slashes.ts index 401a04b..61bfa32 100644 --- a/7-hot-module-reload/src/commands/slashes.ts +++ b/7-hot-module-reload/src/commands/slashes.ts @@ -5,6 +5,6 @@ import { Discord, Slash } from "discordx"; export class Example { @Slash({ description: "ping" }) async ping(interaction: CommandInteraction): Promise { - await interaction.reply("pong! hola!"); + await interaction.reply("pong!"); } }