Update
This commit is contained in:
parent
e5cd16a519
commit
3005270123
1 changed files with 3 additions and 3 deletions
|
@ -11,15 +11,15 @@ class RoleView(nextcord.ui.View):
|
|||
def __init__(self,bot):
|
||||
super().__init__(timeout=None)
|
||||
self.bot = bot
|
||||
async def buttoncallback(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
|
||||
async def buttoncallback(self, button: nextcord.ui.Button, interaction: nextcord.Interaction) -> None:
|
||||
await interaction.response.send_message(f"user requested role {button.custom_id}", ephemeral=True)
|
||||
return
|
||||
#res = await self.bot.cur.execute(f"SELECT roleid FROM rolebutton WHERE serverid = {self.bot.roleguild.id}")
|
||||
button = nextcord.ui.Button(label="Test", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:821095192831852554")
|
||||
button.callback = buttoncallback()
|
||||
button.callback = buttoncallback(self, button)
|
||||
self.add_item(button)
|
||||
button = nextcord.ui.Button(label="Test 2", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:1058708072064884736")
|
||||
button.callback = buttoncallback()
|
||||
button.callback = buttoncallback(self, button)
|
||||
self.add_item(button)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue