fix: changed method names of configure api and configure update to prevent update being overriden

This commit is contained in:
Seaswimmer 2023-07-16 14:25:00 -04:00
parent f6551d9390
commit fa0a594dd6
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -304,15 +304,15 @@ class Pterodactyl(commands.Cog):
configure = app_commands.Group(name="config", description="Configures the Pterodactyl cog.") configure = app_commands.Group(name="config", description="Configures the Pterodactyl cog.")
@configure.command() @configure.command(name="api", description="Sets the information used to access the Pterodactyl API.")
@app_commands.guild_only() @app_commands.guild_only()
async def api(self, interaction: discord.Interaction): async def configure_api(self, interaction: discord.Interaction):
"""Sets the information used to access the Pterdoactyl API.""" """Sets the information used to access the Pterdoactyl API."""
await interaction.response.send_modal(self.APIConfigModal(self.config)) await interaction.response.send_modal(self.APIConfigModal(self.config))
@configure.command() @configure.command(name="update", description="Sets the startup arguments for the update command.")
@app_commands.guild_only() @app_commands.guild_only()
async def update(self, interaction: discord.Interaction): async def configure_update(self, interaction: discord.Interaction):
"""Sets the startup arguments for the update command.""" """Sets the startup arguments for the update command."""
await interaction.response.send_modal(self.StartupConfigModal(self.config)) await interaction.response.send_modal(self.StartupConfigModal(self.config))