fix: Update response messages for sex and rape commands for clarity

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

View File

@ -109,7 +109,7 @@ class MessageCog(commands.Cog):
count = await self._get_usage_count(interaction.user.id, member.id, "neru_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")
@ -150,7 +150,7 @@ class MessageCog(commands.Cog):
f"{ctx.author.mention} and {member.mention} experienced explosive 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)
@rp.command(name="rape", description="Sends a message stating the author raped the mentioned user.")
@ -325,7 +325,7 @@ class MessageCog(commands.Cog):
count = await self._get_usage_count(interaction.user.id, member.id, "neru_rape")
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)
@rp.command(name="kiss", description="Send a wholesome kiss message to the mentioned user")