diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index ba8c80a..40fa293 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -111,7 +111,7 @@ class Pterodactyl(commands.Cog): return await ctx.response.send_message(f"Server is already {action_ing}.", ephemeral=True) return await ctx.send(f"Server is already {action_ing}.") - if current_status in ["starting", "stopping"]: + if current_status in ["starting", "stopping"] and action != "kill": if isinstance(ctx, discord.Interaction): return await ctx.response.send_message("Another power action is already in progress.", ephemeral=True) return await ctx.send("Another power action is already in progress.")