Compare commits
2 commits
e190b613ba
...
0b262eed2b
Author | SHA1 | Date | |
---|---|---|---|
0b262eed2b | |||
65e0a954ad |
1 changed files with 4 additions and 4 deletions
|
@ -115,7 +115,8 @@ class Pterodactyl(commands.Cog):
|
||||||
|
|
||||||
@discord.ui.button(label="Yes", style=discord.ButtonStyle.success)
|
@discord.ui.button(label="Yes", style=discord.ButtonStyle.success)
|
||||||
async def yes_button(self, button:discord.ui.Button, interaction:discord.Interaction):
|
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:
|
while True:
|
||||||
async with aiohttp.ClientSession() as session:
|
async with aiohttp.ClientSession() as session:
|
||||||
async with session.get(await Pterodactyl.get_url(interaction.guild, "resources"), headers=self.passed_info[2]) as response:
|
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!")
|
await self.passed_info[5].edit("Server stopped!")
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
await asyncio.sleep(1)
|
await asyncio.sleep(2)
|
||||||
continue
|
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]:
|
for data in self.passed_info[3]:
|
||||||
await Pterodactyl.put(await Pterodactyl.get_url(interaction.guild, "startup/variable"), self.passed_info[2], data)
|
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"})
|
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):
|
async def no_button(self, button:discord.ui.Button, interaction:discord.Interaction):
|
||||||
for button in self.children:
|
for button in self.children:
|
||||||
button.disabled = True
|
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()
|
@app_commands.command()
|
||||||
async def test(self, interaction: discord.Interaction, endpoint: str = None):
|
async def test(self, interaction: discord.Interaction, endpoint: str = None):
|
||||||
|
|
Reference in a new issue