From 34c64d560f3706482d734919999c2c03dc6012bd Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sun, 2 Aug 2026 05:24:50 -0400 Subject: [PATCH] debug --- modes/fantasy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modes/fantasy.py b/modes/fantasy.py index e4e89be..346d633 100644 --- a/modes/fantasy.py +++ b/modes/fantasy.py @@ -108,6 +108,7 @@ def render_player(matrix, img, player, x_offset): img.putpixel((x_offset + GAME_WIDTH - 1, row), DIVIDER_COLOR) def build_canvas(matrix, team): + print(players) total_players = len(players[team]) total_width = GAME_WIDTH * (total_players + 4) img = Image.new("RGB", (total_width, PANEL_HEIGHT), (0,0,0))