mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-26 07:04:58 +05:00
fix
This commit is contained in:
parent
1086fc62ba
commit
31112070fb
1 changed files with 4 additions and 1 deletions
|
@ -14,7 +14,10 @@ module.exports = class {
|
||||||
if (message.author.bot) return;
|
if (message.author.bot) return;
|
||||||
|
|
||||||
// Fuck u faxon
|
// Fuck u faxon
|
||||||
if (message.author.id === "285109105717280768" && message.guild) await message.react("936280973543362560");
|
if (message.author.id === "285109105717280768" && message.guild) {
|
||||||
|
const emoji = this.client.emojis.cache.get("123456789012345678");
|
||||||
|
await message.react(emoji);
|
||||||
|
}
|
||||||
|
|
||||||
// If the member on a guild is invisible or not cached, fetch them.
|
// If the member on a guild is invisible or not cached, fetch them.
|
||||||
if (message.guild && !message.member) await message.guild.members.fetch(message.author.id);
|
if (message.guild && !message.member) await message.guild.members.fetch(message.author.id);
|
||||||
|
|
Loading…
Reference in a new issue