added a test command
This commit is contained in:
parent
6656b3673c
commit
ee541ac106
1 changed files with 7 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue