diff options
| author | nokoe <nokoe@mailbox.org> | 2024-06-21 20:50:40 +0200 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:27:44 +0200 | 
| commit | fc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c (patch) | |
| tree | b26c543b5028ee6d2dd438f288c32c39266e8e33 /client/scripts/tiles/counter_base.gd | |
| parent | 904c885b80d7360daee7de3f47f8698e3e0de6a6 (diff) | |
| download | hurrycurry-fc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c.tar hurrycurry-fc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c.tar.bz2 hurrycurry-fc3237a432d3b7a11fd4468d6d3fd5525ebd2c0c.tar.zst  | |
replace setup with _init
Diffstat (limited to 'client/scripts/tiles/counter_base.gd')
| -rw-r--r-- | client/scripts/tiles/counter_base.gd | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/client/scripts/tiles/counter_base.gd b/client/scripts/tiles/counter_base.gd index 19c7f045..bf51513e 100644 --- a/client/scripts/tiles/counter_base.gd +++ b/client/scripts/tiles/counter_base.gd @@ -1,8 +1,8 @@  class_name CounterBase  extends Counter -func setup(rename: String, neighbors: Array): -	super.setup(rename, neighbors) +func _init(rename: String, neighbors: Array): +	super(rename, neighbors)  	match kind:  		CounterKind.OUTER_CORNER:  			base.add_child(load("res://models/prefabs/map/kitchencounter_outercorner.tscn").instantiate())  |