From e646289f6363322abe26498e592e7154265b6085 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 12 Aug 2020 11:36:01 -0700 Subject: [PATCH] changing embed thumbnail to be the lodestone icon --- app/ffxiv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ffxiv.py b/app/ffxiv.py index b448c6aa..7f71d7d3 100644 --- a/app/ffxiv.py +++ b/app/ffxiv.py @@ -50,7 +50,7 @@ def make_request(name, server): embed = discord.Embed(description=character['Name'], color=0x428bca, type="rich") - embed.set_author(name="FFXIV API bullshit for %s, player ID: %s" % (character['Name'], character['ID']), icon_url=character['Avatar']) + embed.set_author(name="FFXIV API bullshit for %s, player ID: %s" % (character['Name'], character['ID']), icon_url="http://na.lodestonenews.com/images/thumbnail.png") embed.set_thumbnail(url=class_icon) embed.add_field(name="Current Class", value="%s - Lvl: %s" % (current_class_name, current_class_level), inline=True) embed.add_field(name="XP to level up", value=xp_to_level_up, inline=True)