From fa2b5a034dabba68850067fabd845044f3b9494e Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 15 Jul 2023 18:57:30 -0400 Subject: [PATCH] change: text changed in update command --- pterodactyl/ptero.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/ptero.py b/pterodactyl/ptero.py index 61993ab..e40ea4a 100644 --- a/pterodactyl/ptero.py +++ b/pterodactyl/ptero.py @@ -106,7 +106,7 @@ class Pterodactyl(commands.Cog): await interaction_message.edit(content="Packwiz installer finished.\nUpdate process completed!") elif response_dict['attributes']['current_state'] == "running" or response_dict['attributes']['current_state'] == "starting": passed_info = [old_startup_args[0], old_startup_args[1], headers, put_data, new_put_data, interaction_message] - await interaction_message.edit(content="Server is already running! Are you sure you'd like to stop the server for updates?", view=self.UpdateButtons(timeout=180, passed_info=passed_info)) + await interaction_message.edit(content="The server is already running! Are you sure you'd like to stop the server for updates?", view=self.UpdateButtons(timeout=180, passed_info=passed_info)) class UpdateButtons(discord.ui.View): def __init__(self, timeout, passed_info):