From fb6bb01b90fe0135479d56bb224143a85ac5dcf5 Mon Sep 17 00:00:00 2001 From: snipe <72265661+notsniped@users.noreply.github.com> Date: Fri, 24 Nov 2023 16:29:54 +0530 Subject: [PATCH] Add `/squareroot` to math command group --- cogs/maths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/maths.py b/cogs/maths.py index f4b5cfc2..29ee3275 100644 --- a/cogs/maths.py +++ b/cogs/maths.py @@ -16,7 +16,7 @@ def __init__(self, bot): self.bot = bot math = SlashCommandGroup("math", "Use various math tools.") - @commands.slash_command( + @math.command( name="squareroot", description="Finds the square root of any positive number" )