Skip to content

Commit

Permalink
Suppress embeds for charinfo command output.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerrie-Aries committed Nov 24, 2023
1 parent 0bf68c3 commit c48da76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generalinfo/generalinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def to_string(c):
msg = "\n\n".join(map(to_string, characters))
if len(msg) > 2000:
return await ctx.send("Output too long to display.")
await ctx.send(msg)
await ctx.send(msg, suppress_embeds=True)

@commands.command()
@checks.has_permissions(PermissionLevel.MODERATOR)
Expand Down

0 comments on commit c48da76

Please sign in to comment.