diff options
Diffstat (limited to 'client/map/map.gd')
-rw-r--r-- | client/map/map.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/map.gd b/client/map/map.gd index 1155a70c..913c29da 100644 --- a/client/map/map.gd +++ b/client/map/map.gd @@ -68,7 +68,7 @@ func update(pos, tile_name, neighbors): instance = GenericTile.new(node_name, neighbors, t) instance.position = Vector3(pos[0], 0, pos[1]) - tile_by_pos[str(Vector2i(pos[0],pos[1]))] = instance + tile_by_pos[str(Vector2i(pos[0], pos[1]))] = instance add_child(instance) func queue_free_rename(node: Node) -> void: |