This commit is contained in:
Slipstream 2025-05-19 14:57:55 -06:00
parent 429d9525ba
commit 223a06450e
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -24,13 +24,13 @@ class MessageCog(commands.Cog):
@app_commands.allowed_installs(guilds=True, users=True)
@app_commands.allowed_contexts(guilds=True, dms=True, private_channels=True)
@app_commands.describe(member="The user to send the message to")
async def molest_slash(self, interaction: discord.Interaction, member: discord.Member):
async def molest_slash(self, interaction: discord.Interaction, member: discord.User):
"""Slash command version of message."""
response = await self._message_logic(member.mention)
await interaction.response.send_message(response)
@commands.command(name="molest")
async def molest_legacy(self, ctx: commands.Context, member: discord.Member):
async def molest_legacy(self, ctx: commands.Context, member: discord.User):
"""Legacy command version of molest."""
response = await self._message_logic(member.mention)
await ctx.reply(response)
@ -39,7 +39,7 @@ class MessageCog(commands.Cog):
@app_commands.allowed_installs(guilds=True, users=True)
@app_commands.allowed_contexts(guilds=True, dms=True, private_channels=True)
@app_commands.describe(member="The user to mention in the message")
async def rape_slash(self, interaction: discord.Interaction, member: discord.Member):
async def rape_slash(self, interaction: discord.Interaction, member: discord.User):
"""Slash command version of rape."""
rape_messages = [
f"{interaction.user.mention} raped {member.mention}.",
@ -54,7 +54,7 @@ class MessageCog(commands.Cog):
await interaction.response.send_message(response)
@commands.command(name="rape")
async def rape_legacy(self, ctx: commands.Context, member: discord.Member):
async def rape_legacy(self, ctx: commands.Context, member: discord.User):
"""Legacy command version of rape."""
rape_messages = [
f"{ctx.author.mention} raped {member.mention}.",
@ -72,7 +72,7 @@ class MessageCog(commands.Cog):
@app_commands.allowed_installs(guilds=True, users=True)
@app_commands.allowed_contexts(guilds=True, dms=True, private_channels=True)
@app_commands.describe(member="The user to send the message to")
async def sex_slash(self, interaction: discord.Interaction, member: discord.Member):
async def sex_slash(self, interaction: discord.Interaction, member: discord.User):
"""Slash command version of sex."""
sex_messages = [
f"{interaction.user.mention} and {member.mention} shared a tender kiss that deepened into a passionate embrace.",
@ -107,7 +107,7 @@ class MessageCog(commands.Cog):
await interaction.response.send_message(response)
@commands.command(name="sex")
async def sex_legacy(self, ctx: commands.Context, member: discord.Member):
async def sex_legacy(self, ctx: commands.Context, member: discord.User):
"""Legacy command version of sex."""
sex_messages = [
f"{ctx.author.mention} and {member.mention} shared a tender kiss that deepened into a passionate embrace.",