diff --git a/backend/src/plugins/LocateUser/utils/sendWhere.ts b/backend/src/plugins/LocateUser/utils/sendWhere.ts index 4ab52e45..11d07ba1 100644 --- a/backend/src/plugins/LocateUser/utils/sendWhere.ts +++ b/backend/src/plugins/LocateUser/utils/sendWhere.ts @@ -25,8 +25,9 @@ export async function sendWhere( sendErrorMessage(pluginData, channel, "Cannot create an invite to that channel!"); return; } - channel.createMessage( - prepend + `${member.mention} is in the following channel: \`${voice.name}\` ${getInviteLink(invite)}`, - ); + channel.createMessage({ + content: prepend + `${member.mention} is in the following channel: \`${voice.name}\` ${getInviteLink(invite)}`, + allowedMentions: { users: true }, + }); } }