aboutsummaryrefslogtreecommitdiff
path: root/client/map/tiles/wall.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/tiles/wall.gd')
-rw-r--r--client/map/tiles/wall.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/tiles/wall.gd b/client/map/tiles/wall.gd
index a6d650da..5b183412 100644
--- a/client/map/tiles/wall.gd
+++ b/client/map/tiles/wall.gd
@@ -16,8 +16,8 @@
class_name Wall
extends WallTile
-func _init(rename: String, neighbors: Array):
- super(rename, neighbors)
+func _init(ctx: TileFactory.TileCC):
+ super(ctx)
match kind:
WallKind.STRAIGHT:
base.add_child(load("res://map/tiles/wall_straight.tscn").instantiate())