Aint you Nathaniel B

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

View file

@ -53,6 +53,17 @@ class Tags(commands.Cog):
description="Currently, you are in modmail. Your question is a support question, not a question only a staff member could answer.\n*Because you couldn't read the huge WARNING on the modmail channel, you have been banned from opening tickets. Go to <#1026515880080842772>.*", description="Currently, you are in modmail. Your question is a support question, not a question only a staff member could answer.\n*Because you couldn't read the huge WARNING on the modmail channel, you have been banned from opening tickets. Go to <#1026515880080842772>.*",
color=0xFF8989 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: async def setup(bot: commands.Bot) -> None:
await bot.add_cog(Tags(bot)) await bot.add_cog(Tags(bot))