From 9cc261b01837acc9e69d5f0371799162468dbd5b Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 25 Jul 2020 00:54:25 +0100 Subject: [PATCH] Reverting back to just the lowest 20 roles Will try to fix it later --- cogs/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/info.py b/cogs/info.py index cdede44b..c7e088c8 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -133,7 +133,7 @@ class Info(commands.Cog): # Store the first 20 roles in a string called "roles" # (Skipping the first element as it's always going to be @everyone) - role_string = f"{' **>** '.join(map(str, (role.mention for role in ctx.guild.roles[-20:])))} and **{length}** more" + role_string = f"{' **>** '.join(map(str, (role.mention for role in ctx.guild.roles[1:20])))} and **{length}** more" else: # Display all the roles in the server as it is less than 20 roles