fix: Fix read channel event

This commit is contained in:
kimpure 2026-02-17 14:26:51 +00:00
parent 8a79f2671b
commit 38fe3f0be2

View file

@ -48,11 +48,13 @@ export default defineEvent("messageCreate", async (message) => {
: "알수없는 메시지" : "알수없는 메시지"
); );
} else { } else {
await content.split("\n").forEach(async text => {
await playVoice( await playVoice(
guild, guild,
profile, profile,
content = content text
); );
});
} }
} catch(err) { } catch(err) {