fix: fixed an issue caused by the temporary code removed in last commit
This commit is contained in:
parent
dd2a031084
commit
d0f71ffbec
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ class Pterodactyl(commands.Cog):
|
|||
|
||||
@ui.button(label="Yes", style=discord.ButtonStyle.success)
|
||||
async def yes_button(self, button:ui.Button, interaction:discord.Interaction):
|
||||
requests.post(await Pterodactyl.get_url(interaction.guild, "power"), headers=headers, json={"signal": "stop"})
|
||||
requests.post(await Pterodactyl.get_url(interaction.guild, "power"), headers=self.passed_info[2], json={"signal": "stop"})
|
||||
await interaction.response.edit_message("Server stopping...", view=None)
|
||||
while True:
|
||||
async with aiohttp.ClientSession() as session:
|
||||
|
|
Reference in a new issue