From d4666d19eb7b44a2dcf0379e16a9e8914fb09d4b Mon Sep 17 00:00:00 2001 From: kieranrobson Date: Tue, 10 May 2022 01:26:36 +0100 Subject: [PATCH] Updated ready.js ids --- commands/general/buy.js | 2 +- events/ready.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/general/buy.js b/commands/general/buy.js index c93ba2d..f9215ab 100644 --- a/commands/general/buy.js +++ b/commands/general/buy.js @@ -2,7 +2,7 @@ const discord = require("discord.js"); module.exports = { name: "buy", - aliases: [''], + aliases: ['paid'], /** * * @param {Client} client diff --git a/events/ready.js b/events/ready.js index e5949cd..b5c6a55 100644 --- a/events/ready.js +++ b/events/ready.js @@ -7,11 +7,11 @@ client.on('ready', () => { - const guild = client.guilds.cache.get('744586833135927366'); + const guild = client.guilds.cache.get('427865794467069962'); setInterval(() =>{ const memberCount = guild.members.cache.filter(m => !m.user.bot).size; - const channel = guild.channels.cache.get('857995452052799538'); - channel.setName(`Humans: ${memberCount.toLocaleString()}`); + const channel = guild.channels.cache.get('906167542249308160'); + channel.setName(`Discord Members: ${memberCount.toLocaleString()}`); }, 600000); })