misc(moderation): added commented-out placeholders for the blacklist commands
This commit is contained in:
parent
c07e3cc095
commit
fd71f176f9
1 changed files with 8 additions and 0 deletions
|
@ -643,6 +643,14 @@ class Moderation(commands.Cog):
|
|||
await interaction.edit_original_response(content=f"{target.mention} has been warned! (Case `#{moderation_id}`)\n**Reason** - `{reason}`")
|
||||
await self.log(interaction, moderation_id)
|
||||
|
||||
# @app_commands.group(name="blacklist")
|
||||
# async def blacklist(self, interaction: discord.Interaction):
|
||||
# """Blacklist users."""
|
||||
|
||||
# @blacklist.command(name="add")
|
||||
# async def blacklist_add(self, interaction: discord.Interaction, target: discord.Member, reason: str, silent: bool = None):
|
||||
# """"""
|
||||
|
||||
@app_commands.command(name="mute")
|
||||
async def mute(self, interaction: discord.Interaction, target: discord.Member, duration: str, reason: str, silent: bool = None):
|
||||
"""Mute a user.
|
||||
|
|
Loading…
Reference in a new issue