diff options
Diffstat (limited to 'client/map/tiles/table.gd')
-rw-r--r-- | client/map/tiles/table.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/map/tiles/table.gd b/client/map/tiles/table.gd index e62e88fc..bf766f0b 100644 --- a/client/map/tiles/table.gd +++ b/client/map/tiles/table.gd @@ -19,3 +19,6 @@ extends FullTile func _init(rename: String, neighbors: Array): super(rename, neighbors) base.add_child(load("res://map/tiles/table.tscn").instantiate()) + +static func interact_target() -> Vector3: + return Vector3(0., .5, 0.) |