aboutsummaryrefslogtreecommitdiff
path: root/client/map/tiles/item_portal.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/tiles/item_portal.gd')
-rw-r--r--client/map/tiles/item_portal.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/tiles/item_portal.gd b/client/map/tiles/item_portal.gd
index c4762ae2..080b70ed 100644
--- a/client/map/tiles/item_portal.gd
+++ b/client/map/tiles/item_portal.gd
@@ -17,7 +17,7 @@ class_name ItemPortal
extends CounterBase
var model: PortalModel = load("res://map/tiles/portal.tscn").instantiate()
-func _init(rename: String, neighbors: Array, type: bool):
- super(rename, neighbors)
+func _init(ctx: TileFactory.TileCC, type: bool):
+ super(ctx)
model.configure(0.2, type)
base.add_child(model)