fix: fixed power commands failing to load
This commit is contained in:
parent
f10178e948
commit
fed6790122
1 changed files with 3 additions and 3 deletions
|
@ -128,7 +128,7 @@ class Pterodactyl(commands.Cog):
|
|||
power = app_commands.Group(name='power', description="Controls the server's power state.")
|
||||
|
||||
@power.command(name='start', description="Starts the server.")
|
||||
@power.guild_only()
|
||||
@app_commands.guild_only()
|
||||
async def start(self, interaction: discord.Interaction):
|
||||
"""Starts the server."""
|
||||
await interaction.response.defer(ephemeral=True, thinking=True)
|
||||
|
@ -153,7 +153,7 @@ class Pterodactyl(commands.Cog):
|
|||
await message.delete(delay=3)
|
||||
|
||||
@power.command(name='restart', description="Restarts the server.")
|
||||
@power.guild_only()
|
||||
@app_commands.guild_only()
|
||||
async def restart(self, interaction: discord.Interaction):
|
||||
"""Restarts the server."""
|
||||
await interaction.response.defer(ephemeral=True, thinking=True)
|
||||
|
@ -181,7 +181,7 @@ class Pterodactyl(commands.Cog):
|
|||
await message.delete(delay=3)
|
||||
|
||||
@power.command(name='stop', description="Stops the server.")
|
||||
@power.guild_only()
|
||||
@app_commands.guild_only()
|
||||
async def stop(self, interaction: discord.Interaction):
|
||||
"""Stops the server."""
|
||||
await interaction.response.defer(ephemeral=True, thinking=True)
|
||||
|
|
Reference in a new issue