moved new_put_data
This commit is contained in:
parent
5b82db41b6
commit
a7c7a8e17c
1 changed files with 10 additions and 10 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue