From 229c239605c0a66c3b0cd8cc16e70fc2c91d6ae2 Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Fri, 11 Aug 2023 18:08:08 -0400 Subject: [PATCH] Minor comment update --- world.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/world.gd b/world.gd index 7fe76b0..2456b03 100644 --- a/world.gd +++ b/world.gd @@ -87,6 +87,7 @@ func start_conway() -> void: ## Check a cell against the Conway rules and return True if cell shoudl be alive +## The logic in this could be cleaned up pretty easily. Only verbose for understanding. func cell_is_alive(pos: Vector2) -> bool: var neighbors := count_living_neighbors(pos) var currently_alive = world[pos.x][pos.y] is RID