3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00

Fix error when using !w

This commit is contained in:
Dragory 2020-07-29 01:20:11 +03:00
parent b82196058a
commit b8c75a922a
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -15,6 +15,6 @@ export const WhereCmd = locateUserCommand({
async run({ message: msg, args, pluginData }) {
const member = await resolveMember(pluginData.client, pluginData.guild, args.member.id);
sendWhere.call(this, pluginData.guild, member, msg.channel, `${msg.member.mention} | `);
sendWhere(pluginData, member, msg.channel, `${msg.member.mention} | `);
},
});