From 2cf3be93788ef400a09e77b84c4e2d286154e89a Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Thu, 20 Nov 2025 18:04:45 -0500 Subject: [PATCH] emergency hotfix --- scenes/result.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scenes/result.py b/scenes/result.py index 50101e5..badf62d 100644 --- a/scenes/result.py +++ b/scenes/result.py @@ -87,7 +87,10 @@ class Background: self.width = width def draw(self): x = 0 - footer_height = tex.textures["background"][f"footer_{self.player_num}p"].height + if self.player_num == 3: + footer_height = tex.textures["background"]["footer_1p"].height + else: + footer_height = tex.textures["background"][f"footer_{self.player_num}p"].height if self.player_num == PlayerNum.TWO_PLAYER: while x < self.width: tex.draw_texture('background', 'background_1p', x=x, y=-(tex.screen_height//2))