feat(pterodactyl): added ptero power kill command
This commit is contained in:
parent
52be531807
commit
8c58e1746e
1 changed files with 16 additions and 0 deletions
|
@ -166,6 +166,22 @@ class Pterodactyl(commands.Cog):
|
||||||
else:
|
else:
|
||||||
await message.edit(content="Cancelled.", view=None)
|
await message.edit(content="Cancelled.", view=None)
|
||||||
|
|
||||||
|
@pterodactyl_power.command(name = "kill")
|
||||||
|
async def pterodactyl_power_kill(self, ctx: commands.Context) -> Optional[discord.Message]:
|
||||||
|
"""Kill the server."""
|
||||||
|
current_status = await config.current_status()
|
||||||
|
if current_status == 'stopped':
|
||||||
|
return await ctx.send("Server is already stopped.")
|
||||||
|
view = ConfirmView(ctx.author, disable_buttons=True)
|
||||||
|
message = await ctx.send("**⚠️ Forcefully killing the server process can corrupt data in some cases.**\nAre you sure you want to kill the server?", view=view)
|
||||||
|
await view.wait()
|
||||||
|
if view.result is True:
|
||||||
|
await message.edit(content="Sending websocket command to kill server...", view=None)
|
||||||
|
await self.websocket.send(json.dumps({"event": "set state", "args": ["kill"]}))
|
||||||
|
await message.edit(content="Server stopping... (forcefully killed)", view=None)
|
||||||
|
else:
|
||||||
|
await message.edit(content="Cancelled.", view=None)
|
||||||
|
|
||||||
@pterodactyl.group(autohelp = True, name = "config", aliases = ["settings", "set"])
|
@pterodactyl.group(autohelp = True, name = "config", aliases = ["settings", "set"])
|
||||||
@commands.is_owner()
|
@commands.is_owner()
|
||||||
async def pterodactyl_config(self, ctx: commands.Context) -> None:
|
async def pterodactyl_config(self, ctx: commands.Context) -> None:
|
||||||
|
|
Loading…
Reference in a new issue