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)