Move user_count.py to info.py in owner folder

This commit is contained in:
Parker M. 2024-04-03 15:42:03 -05:00
parent dac66a0974
commit 831fad53f1
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -1,10 +1,11 @@
from discord.ext import commands from discord.ext import commands
import discord import discord
import lavalink
from global_variables import BOT_COLOR from global_variables import BOT_COLOR
class UserCount(commands.Cog): class Info(commands.Cog):
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot
@ -29,7 +30,7 @@ class UserCount(commands.Cog):
embed = discord.Embed( embed = discord.Embed(
title="User Count", title="User Count",
description=f"Total Members: `{total_members:,}`\nTotal Guilds: `{len(self.bot.guilds):,}`", description=f"Total Members: `{total_members:,}`\nTotal Guilds: `{len(self.bot.guilds):,}`\n\nTotal Players: `{self.bot.lavalink.nodes[0].stats.players}`",
color=BOT_COLOR, color=BOT_COLOR,
) )
# Add the top 5 guilds to the embed # Add the top 5 guilds to the embed
@ -42,4 +43,4 @@ class UserCount(commands.Cog):
async def setup(bot): async def setup(bot):
await bot.add_cog(UserCount(bot)) await bot.add_cog(Info(bot))