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); })