diff --git a/pterodactyl/ptero.py b/pterodactyl/ptero.py index da7d159..3adcf3f 100644 --- a/pterodactyl/ptero.py +++ b/pterodactyl/ptero.py @@ -75,19 +75,19 @@ class Pterodactyl(commands.Cog): "value": startup_jar } ] + new_put_data = [ + { + "key": "FLAGS", + "value": old_startup_args[1] + }, + { + "key": "SERVER_JARFILE", + "value": old_startup_args[0] + } + ] if response_dict['attributes']['current_state'] == "offline": for data in put_data: await self.put(await self.get_url(interaction.guild, "startup/variable"), headers, data) - new_put_data = [ - { - "key": "FLAGS", - "value": old_startup_args[1] - }, - { - "key": "SERVER_JARFILE", - "value": old_startup_args[0] - } - ] requests.post(await self.get_url(interaction.guild, "power"), headers=headers, json={"signal": "start"}) await interaction_message.edit(content="Packwiz installer started...") await asyncio.sleep(1)