mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
fuck u faxon
This commit is contained in:
parent
39c223bff1
commit
6dc5304811
4 changed files with 6 additions and 3 deletions
|
@ -18,7 +18,7 @@ class Report extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async run(message, args, data) {
|
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);
|
const repChannel = message.guild.channels.cache.get(data.guild.plugins.reports);
|
||||||
if (!repChannel) return message.error("general/report:MISSING_CHANNEL");
|
if (!repChannel) return message.error("general/report:MISSING_CHANNEL");
|
||||||
|
|
|
@ -18,7 +18,7 @@ class Suggest extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async run(message, args, data) {
|
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);
|
const suggChannel = message.guild.channels.cache.get(data.guild.plugins.suggestions);
|
||||||
if (!suggChannel) return message.error("general/suggest:MISSING_CHANNEL");
|
if (!suggChannel) return message.error("general/suggest:MISSING_CHANNEL");
|
||||||
|
|
|
@ -18,7 +18,7 @@ class ServersList extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async run(message, args, data) {
|
async run(message, args, data) {
|
||||||
if (!message.channel.type !== "DM") message.delete();
|
if (message.channel.type !== "DM") message.delete();
|
||||||
|
|
||||||
let i0 = 0,
|
let i0 = 0,
|
||||||
i1 = 10,
|
i1 = 10,
|
||||||
|
|
|
@ -13,6 +13,9 @@ module.exports = class {
|
||||||
// If the message author is a bot
|
// If the message author is a bot
|
||||||
if (message.author.bot) return;
|
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 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