From a69c90c8229977fb57ee1135c7ecb3b20533a5f6 Mon Sep 17 00:00:00 2001 From: kimpure Date: Mon, 23 Feb 2026 11:33:46 +0000 Subject: [PATCH] Fix build issue --- packages/bot/commands/playVoice.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/bot/commands/playVoice.ts b/packages/bot/commands/playVoice.ts index 42361bc..d93f6b8 100644 --- a/packages/bot/commands/playVoice.ts +++ b/packages/bot/commands/playVoice.ts @@ -22,9 +22,11 @@ export default defineCommand( return await interaction.editReply("올바르지 않은 서버에요"); try { + const userProfile = await getUserProfile(interaction.user.id); await playVoice( interaction.guild, - await getUserProfile(interaction.user.id), + userProfile, + userProfile.voice, interaction.options.getString("content") as string );