From dacbaa01193dbf0af74cefd6238cac530deb12a8 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sun, 2 Aug 2026 05:30:23 -0400 Subject: [PATCH] fix bad condition placement --- modes/fantasy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modes/fantasy.py b/modes/fantasy.py index b29d026..de6f91f 100644 --- a/modes/fantasy.py +++ b/modes/fantasy.py @@ -151,7 +151,7 @@ def draw_frame(matrix): matrix.canvas.Clear() - if not len(players[current_team] > 0): + if not len(players[current_team]) > 0: graphics.DrawText(matrix.canvas, font, 10, 22, rbg(Colors.RED.value), "No players found")