From ac08ecbc276b6dbae39a535546d9e7a3e17c2b8e Mon Sep 17 00:00:00 2001 From: Sam <61994039+fourthDimensional@users.noreply.github.com> Date: Fri, 6 Jun 2025 15:01:54 -0500 Subject: [PATCH] Disable food spawning in the simulation --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 85b26ae..f439e89 100644 --- a/main.py +++ b/main.py @@ -26,7 +26,7 @@ GRID_HEIGHT = 25 # Number of cells vertically CELL_SIZE = 20 # Size of each cell in pixels DEFAULT_TPS = 20 # Number of ticks per second for the simulation -FOOD_SPAWNING = True +FOOD_SPAWNING = False def draw_grid(screen, camera, showing_grid=True):