This commit is contained in:
JonnyBro 2022-01-27 20:32:45 +05:00
parent 1086fc62ba
commit 31112070fb

View file

@ -14,7 +14,10 @@ module.exports = class {
if (message.author.bot) return;
// 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 (message.guild && !message.member) await message.guild.members.fetch(message.author.id);