From 508551c579e4cb905d2db382b7baea92c6641670 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 16 Jul 2023 08:33:08 -0400 Subject: [PATCH] hopefully fixed the post request that starts the server --- pterodactyl/ptero.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/ptero.py b/pterodactyl/ptero.py index f1a2d9d..c512a84 100644 --- a/pterodactyl/ptero.py +++ b/pterodactyl/ptero.py @@ -153,7 +153,7 @@ class Pterodactyl(commands.Cog): for data in self.passed_info['old_startup_vars']: await Pterodactyl.put(self, await Pterodactyl.get_url(self, self.passed_info['guild'], "startup/variable"), self.passed_info['headers'], data) await asyncio.sleep(2) - requests.post(await Pterodactyl.get_url(self, self.passed_info['guild'], "power"), self.passed_info['headers'], json={"signal": "start"}) + requests.post(url=await Pterodactyl.get_url(self, self.passed_info['guild'], "power"), headers=self.passed_info['headers'], json={"signal": "start"}) await self.passed_info['interaction'].edit_original_response(content="Server starting...") while True: async with aiohttp.ClientSession() as session: