diff --git a/utils/fpc/storage.py b/utils/fpc/storage.py index 44bdc059..2bd32db7 100644 --- a/utils/fpc/storage.py +++ b/utils/fpc/storage.py @@ -227,6 +227,7 @@ async def create_character_emote_helper( title=f"New emote was added to `{table}` table.", description=f'```py\n{new_emote.name} = "{new_emote}"```', ) + .set_thumbnail(url=emote_source_url) .add_field( name=emote_name, value=str(new_emote), diff --git a/utils/lol/storage.py b/utils/lol/storage.py index b8d71b96..dd47fd76 100644 --- a/utils/lol/storage.py +++ b/utils/lol/storage.py @@ -72,7 +72,7 @@ async def fill_data(self) -> dict[int, Champion]: """ champion_summary = await self.bot.lol.cdragon.get_lol_v1_champion_summary() - query = "SELECT id, emote FROM dota_heroes_info" + query = "SELECT id, emote FROM lol_champions_info" rows: list[GetChampionEmoteRow] = await self.bot.pool.fetch(query) champion_emotes = {row["id"]: row["emote"] for row in rows}