diff --git a/cogs/autopaste.py b/cogs/autopaste.py index 73fc90e..b21ca53 100644 --- a/cogs/autopaste.py +++ b/cogs/autopaste.py @@ -74,10 +74,8 @@ async def interaction_check(self, interaction: Interaction) -> bool: return True elif thread_author.id == self.message_author.id and thread_author.id == interaction.user.id: return False - elif interaction.user.id == self.message_author.id: - return True - return False + return interaction.user.id == self.message_author.id class AutoPaste(Cog):