Skip to content

Commit

Permalink
fix: QOTD Mentions (real)
Browse files Browse the repository at this point in the history
  • Loading branch information
forgetfulskybro committed Jul 28, 2024
1 parent 6c3f083 commit fb70854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/dailyMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default class DailyMessage {
{
embeds: [embed],
content: message.role ? `<@&${message.role}>` : undefined,
allowedMentions: { roles: message.role ? [message.role] : undefined },
allowedMentions: message.role ? { roles: [message.role] } : undefined,
avatarURL:
message.webhook.avatar ||
this.client.user?.displayAvatarURL({ forceStatic: false }),
Expand Down

0 comments on commit fb70854

Please sign in to comment.