From 6d4aaaa87bed759e4ff60dc8a44f4b9cb9c0fcd2 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Fri, 12 Aug 2022 14:57:54 +0200 Subject: [PATCH] fix: personal command /ip not ephemeral --- commands/minecraft/ip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/minecraft/ip.ts b/commands/minecraft/ip.ts index a4caf33..ca28469 100644 --- a/commands/minecraft/ip.ts +++ b/commands/minecraft/ip.ts @@ -25,7 +25,7 @@ export default commandModule({ const usuario = options[1].getMember('usuario', true); if (!usuario) { - await ctx.reply({content: "La IP del servidor de Minecraft es `minecraft.maraturing.com`,\nPide acceso con el comando /mcform."}) + await ctx.reply({content: "La IP del servidor de Minecraft es `minecraft.maraturing.com`,\nPide acceso con el comando /mcform.", ephemeral: true}) } else { await ctx.reply({content: `${usuario}` + ", la IP del servidor de Minecraft es `minecraft.maraturing.com`,\nPide acceso con el comando /mcform"}) }