mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 22:21:51 +00:00
Fix !where and !follow not pinging requestor (#191)
This commit is contained in:
parent
b8c436731c
commit
b62a6685e0
1 changed files with 4 additions and 3 deletions
|
@ -25,8 +25,9 @@ export async function sendWhere(
|
||||||
sendErrorMessage(pluginData, channel, "Cannot create an invite to that channel!");
|
sendErrorMessage(pluginData, channel, "Cannot create an invite to that channel!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
channel.createMessage(
|
channel.createMessage({
|
||||||
prepend + `${member.mention} is in the following channel: \`${voice.name}\` ${getInviteLink(invite)}`,
|
content: prepend + `${member.mention} is in the following channel: \`${voice.name}\` ${getInviteLink(invite)}`,
|
||||||
);
|
allowedMentions: { users: true },
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue