diff options
author | tpart <tpart120@proton.me> | 2024-09-16 18:18:41 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-16 18:18:45 +0200 |
commit | 417cad52aa0b8e8f6ae4217a8de12ef3fcf16358 (patch) | |
tree | cfe0fe2c8001e69480e6fccb0a92c5e75f898f23 /client/map | |
parent | 499f4994a6a8507dcca20ed820c851be9a2343c1 (diff) | |
download | hurrycurry-417cad52aa0b8e8f6ae4217a8de12ef3fcf16358.tar hurrycurry-417cad52aa0b8e8f6ae4217a8de12ef3fcf16358.tar.bz2 hurrycurry-417cad52aa0b8e8f6ae4217a8de12ef3fcf16358.tar.zst |
Fix tomato height
Diffstat (limited to 'client/map')
-rw-r--r-- | client/map/items/sliced_tomato.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/map/items/sliced_tomato.gd b/client/map/items/sliced_tomato.gd index 5b076335..1c491255 100644 --- a/client/map/items/sliced_tomato.gd +++ b/client/map/items/sliced_tomato.gd @@ -19,3 +19,6 @@ extends Item func _init(owned_by_: Node3D): super(owned_by_) base.add_child(load("res://map/items/sliced_tomato.tscn").instantiate()) + +static func height() -> float: + return .025 |