1
0
Fork 0

fix crash

akairo
loicbersier 5 years ago
parent 132a6a0a7c
commit f636aa907f

@ -40,16 +40,11 @@ class fakebotCommand extends Command {
if (err) { if (err) {
console.log(err); console.log(err);
} }
sendWebhook(this.client);
}); });
}); });
} else {
sendWebhook(this.client);
} }
function sendWebhook(client) {
let webhook = require(`../../webhook/${message.guild.id}.json`); let webhook = require(`../../webhook/${message.guild.id}.json`);
client.fetchWebhook(webhook.id, webhook.token) this.client.fetchWebhook(webhook.id, webhook.token)
.then(webhook => { .then(webhook => {
webhook.edit({ webhook.edit({
name: args.member.username, name: args.member.username,
@ -58,6 +53,5 @@ class fakebotCommand extends Command {
return webhook.send(args.message); return webhook.send(args.message);
}); });
} }
}
} }
module.exports = fakebotCommand; module.exports = fakebotCommand;
Loading…
Cancel
Save