Aint you Nathaniel B

This commit is contained in:
nin0dev 2024-10-05 00:09:44 -04:00
parent be5c916a69
commit 9062e0c162

View file

@ -54,5 +54,16 @@ class Tags(commands.Cog):
color=0xFF8989
))
@app_commands.command(name="tag-fuckoff", description="fuck you")
@app_commands.allowed_installs(guilds=False, users=True)
@app_commands.allowed_contexts(guilds=True, dms=True, private_channels=True)
async def dev4(self, interaction: discord.Interaction, target: discord.User = None) -> None:
await interaction.response.send_message(content=f"Hey {target.mention}, take a look at this!" if target else "",
embed=discord.Embed(
title="Rule 5",
description="Do not ping for support.\nDo not DM for support.\nDo not use channels other than support for support.\n\n**Use <#1026515880080842772>.**",
color=0xFF8989
))
async def setup(bot: commands.Bot) -> None:
await bot.add_cog(Tags(bot))