3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-19 08:05:01 +00:00

Fix error when using !w

This commit is contained in:
Dragory 2020-07-29 01:20:11 +03:00
parent 72a968fc5a
commit 93b724c0d8

View file

@ -15,6 +15,6 @@ export const WhereCmd = locateUserCommand({
async run({ message: msg, args, pluginData }) { async run({ message: msg, args, pluginData }) {
const member = await resolveMember(pluginData.client, pluginData.guild, args.member.id); 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} | `);
}, },
}); });