From e438fd6d9b098e17ec6c4cdefe495784d924baae Mon Sep 17 00:00:00 2001 From: Helixu Date: Sat, 20 Nov 2021 18:19:42 +0000 Subject: [PATCH] Tempoarily add a solution to gib mc exceeding the embed.add_field limit of 25, if anyone has any suggestions for how I can actually fix this issue, DM Helixu#1111 --- bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 09321e1..6d174e0 100755 --- a/bot.py +++ b/bot.py @@ -2,7 +2,7 @@ import discord from discord import File, Streaming, Game, Activity, ActivityType, Status -from discord.ext import commands +from discord.ext import commands, tasks import io, aiohttp, asyncio, json, random, logging, requests @@ -129,6 +129,7 @@ async def mc(ctx, *, name = None): for i in json["name_history"]: embed.add_field(name=i['name'], value=f"Changed on: {i['changedToAt']}") await ctx.send(embed = embed) + await ctx.send(f'To view names that did not show up here, go to ') @bot.command(brief="gives credits") async def credits(ctx):