Hi, my discord bot has just stopped being able to send embeds all of a sudden. Nothing has changed, none of my code has changed, this was all working last time I ran the command.
The relevant code snippet is:
print("Creating embed for rules info...")
embedVar = discord.Embed(title="Rules", description="description", color=0x00ff00)
print("Adding field")
embedVar.add_field(name="Strikes System", value="""Long Text""", inline=False)
print("Sending embed...")
await rules_channel.send(embed=embedVar)
It just stalls at line 2, it outputs no errors, and I can run other commands after it stalls. Just for some reason when it tries to create the embed it just doesn't. What's going wrong?