aboutsummaryrefslogtreecommitdiff
path: root/client/scripts/tiles/full_tile.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-06-21 20:50:40 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-23 19:27:44 +0200
commitfc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c (patch)
treeb26c543b5028ee6d2dd438f288c32c39266e8e33 /client/scripts/tiles/full_tile.gd
parent904c885b80d7360daee7de3f47f8698e3e0de6a6 (diff)
downloadhurrycurry-fc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c.tar
hurrycurry-fc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c.tar.bz2
hurrycurry-fc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c.tar.zst
replace setup with _init
Diffstat (limited to 'client/scripts/tiles/full_tile.gd')
-rw-r--r--client/scripts/tiles/full_tile.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/scripts/tiles/full_tile.gd b/client/scripts/tiles/full_tile.gd
index a986b053..863046ba 100644
--- a/client/scripts/tiles/full_tile.gd
+++ b/client/scripts/tiles/full_tile.gd
@@ -3,8 +3,8 @@ extends Floor
var static_body = StaticBody3D.new()
-func setup(rename: String, neighbors: Array):
- super.setup(rename, neighbors)
+func _init(rename: String, neighbors: Array):
+ super(rename, neighbors)
var shape = CollisionShape3D.new()
var box = BoxShape3D.new()
shape.position.y += .5