From 68cbabb7df3995597bb65251f0d1cbc0de4a67be Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 14 Jul 2023 12:22:28 -0400 Subject: [PATCH] hopefully fixed modal this time --- pterodactyl/ptero.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pterodactyl/ptero.py b/pterodactyl/ptero.py index 788d00f..a33a6dd 100644 --- a/pterodactyl/ptero.py +++ b/pterodactyl/ptero.py @@ -42,12 +42,13 @@ class Pterodactyl(commands.Cog): @app_commands.command() async def config(self, interaction: discord.Interaction): """Configures the Pterodactyl cog.""" - await interaction.response.send_modal(self.ConfigModal(interaction.guild)) + config_list = [await self.config.guild(interaction.guild).base_url(), await self.config.guild(interaction.guild).api_key(), await self.config.guild(interaction.guild).server_id()] + await interaction.response.send_modal(self.ConfigModal(config_list)) class ConfigModal(discord.ui.Modal, title="Pterodactyl Manager Configuration"): - def __init__(self, guild: discord.guild): + def __init__(self, config: list): super().__init__() - self.guild = guild + self.config = config base_url = discord.ui.TextInput( label="Base URL", placeholder="Input your Pterodactyl Panel's Base URL here, without HTTPS or HTTP.", @@ -71,17 +72,16 @@ class Pterodactyl(commands.Cog): ) async def on_submit(self, interaction: discord.Interaction): - config_list = [await Pterodactyl.config.guild(interaction.guild).base_url(), await Pterodactyl.config.guild(interaction.guild).api_key(), await Pterodactyl.config.guild(interaction.guild).server_id()] message = "" if self.base_url.value != "": - config_list[0].set(self.base_url) + self.config[0].set(self.base_url) message += f"Base URL set to `{self.base_url.value}`.\n" if self.api_key.value != "": - config_list[1].set(self.api_key) + self.config[1].set(self.api_key) message += f"API Key set to `{self.api_key.value}`.\n" if self.server_id.value != "": - config_list[2].set(self.server_id) + self.config[2].set(self.server_id) message += f"Server ID set to `{self.server_id.value}`.\n" if message == "": - message = f"No changes were made.\nCurrent configuration:\n- Base URL: `{config_list[0]}`\n- API Key: `{config_list[1]}`\n- Server ID: `{config_list[2]}`" + message = f"No changes were made.\nCurrent configuration:\n- Base URL: `{self.config[0]}`\n- API Key: `{self.config[1]}`\n- Server ID: `{self.config[2]}`" await interaction.response.send_message(message, ephemeral=True)