From ee541ac106f7f28009b6e8b05c32808c3ad938f5 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 28 Feb 2023 14:44:24 -0500 Subject: [PATCH] added a test command --- galaxy/galaxy.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index e04f247..6066749 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -9,6 +9,13 @@ class Galaxy(commands.Cog): def __init__(self, bot): self.bot = bot + @commands.command() + @commands.guild_only() + @checks.admin() + async def roleinfo_test(self, ctx, role: discord.Role): + """Testing""" + await ctx.send(role.members) + @commands.command() @commands.guild_only() async def roleinfo(self, ctx, role: discord.Role):