fuck u faxon

This commit is contained in:
JonnyBro 2022-01-27 20:22:12 +05:00
parent 39c223bff1
commit 6dc5304811
4 changed files with 6 additions and 3 deletions

View file

@ -18,7 +18,7 @@ class Report extends Command {
}
async run(message, args, data) {
if (message.author.id === "285109105717280768") return message.channel.send({ content: "пошёл нахуй фахон" });
if (message.author.id === "285109105717280768") return message.channel.send({ content: "Пошёл нахуй фахон" });
const repChannel = message.guild.channels.cache.get(data.guild.plugins.reports);
if (!repChannel) return message.error("general/report:MISSING_CHANNEL");

View file

@ -18,7 +18,7 @@ class Suggest extends Command {
}
async run(message, args, data) {
if (message.author.id === "285109105717280768") return message.channel.send({ content: "пошёл нахуй фахон" });
if (message.author.id === "285109105717280768") return message.channel.send({ content: "Пошёл нахуй фахон" });
const suggChannel = message.guild.channels.cache.get(data.guild.plugins.suggestions);
if (!suggChannel) return message.error("general/suggest:MISSING_CHANNEL");

View file

@ -18,7 +18,7 @@ class ServersList extends Command {
}
async run(message, args, data) {
if (!message.channel.type !== "DM") message.delete();
if (message.channel.type !== "DM") message.delete();
let i0 = 0,
i1 = 10,

View file

@ -13,6 +13,9 @@ module.exports = class {
// If the message author is a bot
if (message.author.bot) return;
// Fuck u faxon
if (message.author.id === "285109105717280768" && message.guild) await message.react(message.guild.emojis.cache.get("936279766913396766"));
// 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);