From 9d64c15a877d38aa55ff8567260036762a309094 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 5 Mar 2024 02:28:10 -0500 Subject: [PATCH] =?UTF-8?q?misc(pterodactyl):=20added=20another=20?= =?UTF-8?q?=E2=9A=A0=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 9855806..ff78c84 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -173,7 +173,7 @@ class Pterodactyl(commands.Cog): 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) + 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)