From b556e023c4577ee64baef3d411125d9f9b7ba769 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Wed, 3 Feb 2021 02:51:01 -0500 Subject: [PATCH] added new field to team embeds --- the_prestige.py | 1 + 1 file changed, 1 insertion(+) diff --git a/the_prestige.py b/the_prestige.py index c91853c..a6f649d 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -1547,6 +1547,7 @@ def build_team_embed(team): rotation_string += f"{player.name} {player.star_string('pitching_stars')}\n" embed.add_field(name="Rotation:", value=rotation_string, inline = False) embed.add_field(name="Lineup:", value=lineup_string, inline = False) + embed.add_field(name="█a██:", value=str(abs(hash(team.name)) % (10 ** 4))) embed.set_footer(text=team.slogan) return embed