From 3046af13e54252da71845bb5f860865aaae8ca9c Mon Sep 17 00:00:00 2001 From: Brosef Date: Wed, 16 Jul 2025 09:46:11 +0100 Subject: [PATCH] Fixed character placement --- game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.py b/game.py index d7e037c..734b7e1 100644 --- a/game.py +++ b/game.py @@ -143,7 +143,7 @@ class Game(gameUtils.Game): for i in range(capLength): # Calculate the base X position of this character # TODO: Make this better, I'm not too happy with my implementation here. - x = self.size[0] / (capLength + 3) + x = drawSurface.size[0] / capLength x *= i # Get the selected difficulty for this character charDiff = normalDist(self.gameDifficulty)