Skip to content

Commit

Permalink
add top half scoring in final func
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmyers committed Oct 1, 2024
1 parent 5236e8e commit d18cf07
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gamedaybot/espn/espn_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ def espn_bot(function):
# on Tuesday we need to get the scores of last week
week = league.current_week - 1
text = "Final " + espn.get_scoreboard_short(league, week=week)
if data["top_half_scoring_scoreboard"]:
text = text + "\n\n" + espn.get_top_half_scoreboard(league, week=week)
text = text + "\n\n" + espn.get_trophies(league, week=week)
elif function == "get_waiver_report" and swid != '{1}' and espn_s2 != '1':
faab = league.settings.faab
Expand Down

0 comments on commit d18cf07

Please sign in to comment.