diff --git a/jarvis/cogs/admin.py b/jarvis/cogs/admin.py index 865ed65..4427638 100644 --- a/jarvis/cogs/admin.py +++ b/jarvis/cogs/admin.py @@ -865,9 +865,20 @@ class AdminCog(commands.Cog): } ) ) - active = len(list(filter(lambda x: x["active"], warnings))) + active = ( + [ + y["reason"] + for y in list(filter(lambda x: x["active"], warnings)) + ] + if warnings + else ["None"] + ) + total = len(warnings) - fields = [Field("Active", active), Field("Total", total)] + fields = [ + Field(f"{len(active)} Active", "\n".join(active)), + Field("Total", total), + ] embed = build_embed( title="Warnings", description=f"{user.mention} active and total warnings",