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):