From 8774397c0b2bdc51c6fd81fad2787a05a20f221c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:32:36 +0000 Subject: [PATCH 1/2] Initial plan From a2a82e7a227ec349107aac7472db7f6ec92051cf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:36:55 +0000 Subject: [PATCH 2/2] Change sun color from yellow to blue Co-authored-by: quintant <34385890+quintant@users.noreply.github.com> --- spaceManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spaceManager.py b/spaceManager.py index 1496c6c..f8aacc8 100644 --- a/spaceManager.py +++ b/spaceManager.py @@ -245,7 +245,7 @@ def iterate(self, screen): radius = max(1, int(mass ** (1/3))) if i == 0: # Draw the sun with a distinctive color - color = (255, 255, 0) # Yellow color for the sun + color = (0, 0, 255) # Blue color for the sun radius = max(radius, 8) # Ensure the sun is prominent else: color = (255, 255, 255) # White color for other particles