Compare commits

...

2 commits

View file

@ -115,7 +115,8 @@ class Pterodactyl(commands.Cog):
@discord.ui.button(label="Yes", style=discord.ButtonStyle.success)
async def yes_button(self, button:discord.ui.Button, interaction:discord.Interaction):
await self.passed_info[5].edit("Server stopping...")
requests.post(await self.get_url(interaction.guild, "power"), headers=headers, json={"signal": "stop"})
await interaction.response.edit_message("Server stopping...", view=None)
while True:
async with aiohttp.ClientSession() as session:
async with session.get(await Pterodactyl.get_url(interaction.guild, "resources"), headers=self.passed_info[2]) as response:
@ -124,9 +125,8 @@ class Pterodactyl(commands.Cog):
await self.passed_info[5].edit("Server stopped!")
break
else:
await asyncio.sleep(1)
await asyncio.sleep(2)
continue
requests.post(await Pterodactyl.get_url(interaction.guild, "power"), headers=self.passed_info[2], json={"signal": "stop"})
for data in self.passed_info[3]:
await Pterodactyl.put(await Pterodactyl.get_url(interaction.guild, "startup/variable"), self.passed_info[2], data)
requests.post(await Pterodactyl.get_url(interaction.guild, "power"), headers=self.passed_info[2], json={"signal": "start"})
@ -162,7 +162,7 @@ class Pterodactyl(commands.Cog):
async def no_button(self, button:discord.ui.Button, interaction:discord.Interaction):
for button in self.children:
button.disabled = True
await self.passed_info[5].edit(content=f"Command cancelled.", view=self)
await interaction.response.edit_message(content=f"Command cancelled.", view=self)
@app_commands.command()
async def test(self, interaction: discord.Interaction, endpoint: str = None):