diff --git a/games/objects/Game.py b/games/objects/Game.py index 72b6fa8..664dcf5 100644 --- a/games/objects/Game.py +++ b/games/objects/Game.py @@ -42,7 +42,7 @@ class Game(AbstractRoom): for i in range(nb_sides): - angle: float = (i * 2 * math.pi / nb_sides) + (math.pi * 3 / 4) + angle: float = (i * 2 * math.pi / nb_sides) + (math.pi * 3 / nb_sides) x: float = config.MAP_CENTER_X + radius * math.cos(angle) y: float = config.MAP_CENTER_Y + radius * math.sin(angle)