From d9fc85ae03f645ea8632953afdee54523719daeb Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 28 Feb 2023 14:46:07 -0500 Subject: [PATCH] lets see if this works (it probably wont) --- galaxy/galaxy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 6066749..fab01f6 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -14,7 +14,8 @@ class Galaxy(commands.Cog): @checks.admin() async def roleinfo_test(self, ctx, role: discord.Role): """Testing""" - await ctx.send(role.members) + list = role.members + await ctx.send(list.name) @commands.command() @commands.guild_only()