feat(discord-bot): change quete command to send message instead of replying
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m14s

This commit is contained in:
2026-05-08 23:37:43 +02:00
parent c0395412f4
commit 8abdfc3b2f

View File

@@ -6,7 +6,7 @@ export const queteCommand: Command = async (message) => {
const quest = (await getActiveQuest()) ?? (await getLatestQuest());
const color = parseInt(quest.quest.promoImagePrimaryColor.substring(1), 16);
await message.reply({
await message.channel.send({
allowedMentions: {
repliedUser: false
},