From fc8ad93ae0fcb7ed4be3e8957f33a93b2d589178 Mon Sep 17 00:00:00 2001 From: MotiCAT Date: Sat, 2 Mar 2024 17:52:28 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Change=20Embed=20to=20appropriat?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/mcbeskin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/mcbeskin.ts b/src/commands/mcbeskin.ts index 0840dbb..a72ac49 100644 --- a/src/commands/mcbeskin.ts +++ b/src/commands/mcbeskin.ts @@ -4,7 +4,7 @@ import { Message, EmbedBuilder } from 'discord.js'; export async function mcbeskinCommand(message: Message) { const name = message.content.split(' ')[1]; - if (!name) return message.reply(embeds.mcskinHelp); + if (!name) return message.reply(embeds.mcbeskinHelp); try { const response = await axios.get(`https://api.geysermc.org/v2/xbox/xuid/${name}`); const xuid = response.data.xuid.toString(16).toUpperCase();