diff --git a/seautils/seautils.py b/seautils/seautils.py index 85df38e..ce9c64e 100644 --- a/seautils/seautils.py +++ b/seautils/seautils.py @@ -126,7 +126,10 @@ class SeaUtils(commands.Cog): if 'ANSWER_SECTION' in response_data: answer_section = "\n".join(response_data['ANSWER_SECTION']) - embed.add_field(name="Answer Section", value=f"```{answer_section}```", inline=False) + if len(answer_section) > 1024: + embed.description = answer_section + else: + embed.add_field(name="Answer Section", value=f"```{answer_section}```", inline=False) if 'AUTHORITY_SECTION' in response_data: authority_section = "\n".join(response_data['AUTHORITY_SECTION'])