Disable food spawning in the simulation
All checks were successful
Build Simulation and Test / Run All Tests (push) Successful in 3m13s

This commit is contained in:
Sam 2025-06-06 15:01:54 -05:00
parent c0479cdcf2
commit ac08ecbc27

View File

@ -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):