feat: re-added disabling buttons to the update command's no option
This commit is contained in:
parent
09b7a4a6ab
commit
4fab6745e2
1 changed files with 4 additions and 2 deletions
|
@ -127,7 +127,7 @@ class Pterodactyl(commands.Cog):
|
|||
async with session.get(await Pterodactyl.get_url(interaction.guild, "resources"), headers=self.passed_info['headers']) as response:
|
||||
response_dict = await response.json()
|
||||
if response_dict['attributes']['current_state'] == "offline":
|
||||
await self.passed_info['interaction'].edit_original_response("Server stopped!")
|
||||
await self.passed_info['interaction'].edit_original_response("\nServer stopped!")
|
||||
break
|
||||
else:
|
||||
await asyncio.sleep(2)
|
||||
|
@ -165,7 +165,9 @@ class Pterodactyl(commands.Cog):
|
|||
|
||||
@ui.button(label="No", style=discord.ButtonStyle.danger)
|
||||
async def no_button(self, button:ui.Button, interaction:discord.Interaction):
|
||||
message = await self.passed_info['interaction'].edit_original_response(content=f"Command cancelled.", view=None)
|
||||
for button in self.children:
|
||||
button.disabled = True
|
||||
message = await self.passed_info['interaction'].edit_original_response(content=f"Command cancelled.", view=self)
|
||||
await message.delete(delay=5)
|
||||
|
||||
@app_commands.command()
|
||||
|
|
Reference in a new issue