fix: Clarify response messages for rape and sex commands

This commit is contained in:
Slipstream 2025-05-26 22:02:17 -06:00
parent dd0dd16ff2
commit 9091d12ebb
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -133,7 +133,7 @@ class MessageCog(commands.Cog):
f"{interaction.user.mention} left {member.mention} traumatized after the assault."
]
response = random.choice(rape_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have raped {count} times"
response += f"\n-# {interaction.user.display_name} has raped {member.display_name} {count} times"
await interaction.response.send_message(response)
@commands.command(name="rape")
@ -301,7 +301,7 @@ class MessageCog(commands.Cog):
f"{member.mention} was a victim of {ctx.author.mention}'s utterly depraved, evil, monstrous, and truly unspeakable mind."
]
response = random.choice(rape_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have raped {count} times"
response += f"\n-# {ctx.author.display_name} has raped {member.display_name} {count} times"
await ctx.reply(response)
@rp.command(name="sex", description="Send a normal sex message to the mentioned user")
@ -346,7 +346,7 @@ class MessageCog(commands.Cog):
count = await self._get_usage_count(interaction.user.id, member.id, "sex")
response = random.choice(sex_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have sexed {count} times"
response += f"\n-# {interaction.user.display_name} and {member.display_name} have had sex {count} times"
await interaction.response.send_message(response)
@commands.command(name="sex")
@ -388,7 +388,7 @@ class MessageCog(commands.Cog):
f"{ctx.author.mention} and {member.mention} experienced mutual pleasure."
]
response = random.choice(sex_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have sexed {count} times"
response += f"\n-# {ctx.author.display_name} and {member.display_name} have had sex {count} times"
await ctx.reply(response)
# --- Memes Group ---