diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-24 00:17:48 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-24 00:17:48 +0200 |
commit | a081edbdf3d01a73d29c21843bf487a0d232152d (patch) | |
tree | e4ad503a24f84d65a212c158a188843489ec8cc8 /client/map | |
parent | 3bd5b5e353590e94ba45fc4fe63c3d88fbfc223b (diff) | |
download | hurrycurry-a081edbdf3d01a73d29c21843bf487a0d232152d.tar hurrycurry-a081edbdf3d01a73d29c21843bf487a0d232152d.tar.bz2 hurrycurry-a081edbdf3d01a73d29c21843bf487a0d232152d.tar.zst |
add background to main menu
Diffstat (limited to 'client/map')
-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: |