aboutsummaryrefslogtreecommitdiff
path: root/client/map/map.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-06-25 15:20:33 +0200
committernokoe <nokoe@mailbox.org>2024-06-25 15:20:33 +0200
commit4c6b38bb85d5211df01ee4f9e14a613dbe21be6d (patch)
treed8b580d4270cad640e2242c51b94330e5fe7fb67 /client/map/map.gd
parentde1771c6cdea53d03f9466491c375d8aa1e19f0c (diff)
downloadhurrycurry-4c6b38bb85d5211df01ee4f9e14a613dbe21be6d.tar
hurrycurry-4c6b38bb85d5211df01ee4f9e14a613dbe21be6d.tar.bz2
hurrycurry-4c6b38bb85d5211df01ee4f9e14a613dbe21be6d.tar.zst
add exterior
Diffstat (limited to 'client/map/map.gd')
-rw-r--r--client/map/map.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/map.gd b/client/map/map.gd
index 14e7698a..d43d7b45 100644
--- a/client/map/map.gd
+++ b/client/map/map.gd
@@ -26,7 +26,7 @@ func update(pos, tile_name, neighbors):
if has_node(node_name):
queue_free_rename(get_node(node_name))
- var instance: Floor = TileFactory.produce(tile_name, node_name, neighbors)
+ var instance: Tile = TileFactory.produce(tile_name, node_name, neighbors)
instance.position = Vector3(pos[0], 0, pos[1])
tile_by_pos[str(Vector2i(pos[0], pos[1]))] = instance