MLB logging changes to make sure we are filtering correctly

This commit is contained in:
Chuck
2025-07-22 10:09:35 -05:00
parent 4da2fd32e2
commit 155cb03131
3 changed files with 15 additions and 5 deletions

View File

@@ -1188,11 +1188,12 @@ class NFLUpcomingManager(BaseNFLManager): # Renamed class
center_y = self.display_height // 2
home_x = self.display_width - home_logo.width + 18
# MLB-style logo positions
home_x = self.display_width - home_logo.width + 2
home_y = center_y - (home_logo.height // 2)
main_img.paste(home_logo, (home_x, home_y), home_logo)
away_x = -18
away_x = -2
away_y = center_y - (away_logo.height // 2)
main_img.paste(away_logo, (away_x, away_y), away_logo)