From 320bba4936f60cb15e6eb43960ec93329fc550ff Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Fri, 11 Aug 2023 16:03:28 -0400 Subject: [PATCH] Minor Cleanup --- .gitignore | 1 + world.gd | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 667a0eb..7556eb8 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ export.cfg export_presets.cfg .godot/ +exports/ # Imported translations (automatically generated from CSV files) *.translation diff --git a/world.gd b/world.gd index a8252d2..bc16bb4 100644 --- a/world.gd +++ b/world.gd @@ -100,7 +100,6 @@ func process_generation() -> void: ## Create the cell using the rendering server func create_cell(pos: Vector2) -> RID: - var world_size = world.size() if world[pos.x][pos.y] is RID: return world[pos.x][pos.y] var rs = RenderingServer