mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 11:40:12 +01:00
Removed the 'template' category from help command suggestions and mappings, reorganized category mappings with comments, and cleaned up cogs/general/ping.py by removing header comments. Updated TODO.md with new tasks and future plans.
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
import discord
|
|
from discord.ext import commands
|
|
from discord.ext.commands import Context
|
|
|
|
|
|
class Ping(commands.Cog, name="ping"):
|
|
def __init__(self, bot) -> None:
|
|
self.bot = bot
|
|
|
|
@commands.hybrid_command(
|
|
name="ping",
|
|
description="Check if the bot is alive.",
|
|
)
|
|
async def ping(self, context: Context) -> None:
|
|
"""
|
|
Check if the bot is alive.
|
|
|
|
:param context: The hybrid command context.
|
|
"""
|
|
embed = discord.Embed(
|
|
title="🏓 Pong!",
|
|
description=f"The bot latency is {round(self.bot.latency * 1000)}ms.",
|
|
color=0x7289DA,
|
|
)
|
|
embed.set_author(name="Ping", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp")
|
|
if getattr(context, "interaction", None):
|
|
inter = context.interaction
|
|
if not inter.response.is_done():
|
|
await inter.response.send_message(embed=embed, ephemeral=True)
|
|
else:
|
|
await inter.followup.send(embed=embed, ephemeral=True)
|
|
else:
|
|
await context.send(embed=embed)
|
|
|
|
|
|
async def setup(bot) -> None:
|
|
await bot.add_cog(Ping(bot))
|