diff --git a/jishaku/shim/paginator_200.py b/jishaku/shim/paginator_200.py index 6f74934b..ac389714 100644 --- a/jishaku/shim/paginator_200.py +++ b/jishaku/shim/paginator_200.py @@ -259,8 +259,10 @@ async def wait_loop(self): else: await self.message.edit(view=None) - async def interaction_check(self, interaction: discord.Interaction): + async def interaction_check(self, *args): """Check that determines whether this interaction should be honored""" + *_, interaction = args # #149 + interaction: discord.Interaction return not self.owner or interaction.user.id == self.owner.id @ui.button(label="1 \u200b \N{BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR}", style=discord.ButtonStyle.secondary)