Updated events
This commit is contained in:
parent
099c8edeed
commit
89a4917986
2 changed files with 12 additions and 8 deletions
|
@ -1,12 +1,12 @@
|
||||||
module.exports = (client, interaction) => {
|
module.exports = (client, interaction) => {
|
||||||
|
if (!interaction.isChatInteraction()) return;
|
||||||
if (!interaction.isCommand()) return;
|
|
||||||
|
|
||||||
const command = client.commands.get(interaction.commandName);
|
const command = client.commands.get(interaction.commandName);
|
||||||
|
|
||||||
if (!command) return void interaction.reply({
|
if (!command)
|
||||||
|
return void interaction.reply({
|
||||||
content: `Command \`${interaction.commandName}\` not found.`,
|
content: `Command \`${interaction.commandName}\` not found.`,
|
||||||
ephemeral: true
|
ephermal: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
command.run(client, interaction);
|
command.run(client, interaction);
|
||||||
|
|
|
@ -3,7 +3,11 @@ module.exports = (client) => {
|
||||||
`Ready to server in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.`
|
`Ready to server in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.`
|
||||||
);
|
);
|
||||||
|
|
||||||
const activities = [`Giveaways in ${client.guilds.cache.size} guilds`,"g!help",`over ${client.users.cache.size} users!`];
|
const activities = [
|
||||||
|
`Giveaways in ${client.guilds.cache.size} guilds`,
|
||||||
|
"/help",
|
||||||
|
`over ${client.users.cache.size} users!`
|
||||||
|
];
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
let activity = activities[Math.floor(Math.random() * activities.length)];
|
let activity = activities[Math.floor(Math.random() * activities.length)];
|
||||||
client.user.setActivity(activity, { type: "WATCHING" });
|
client.user.setActivity(activity, { type: "WATCHING" });
|
||||||
|
|
Loading…
Reference in a new issue