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