diff options
author | tpart <tpart120@proton.me> | 2024-09-04 21:15:47 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-04 21:15:47 +0200 |
commit | f1389c16aee688fd7dd67abb56b5e5c83aaf2c1c (patch) | |
tree | f6ea70c805c039d0b3e1bdb612998bfedd1f6b48 /client/map/items/tomato.gd | |
parent | fc63ac8ce0b6757e4b61a633f93f4f4c27fd7e03 (diff) | |
download | hurrycurry-f1389c16aee688fd7dd67abb56b5e5c83aaf2c1c.tar hurrycurry-f1389c16aee688fd7dd67abb56b5e5c83aaf2c1c.tar.bz2 hurrycurry-f1389c16aee688fd7dd67abb56b5e5c83aaf2c1c.tar.zst |
Fix crash because of incomplete refactor
Diffstat (limited to 'client/map/items/tomato.gd')
-rw-r--r-- | client/map/items/tomato.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/tomato.gd b/client/map/items/tomato.gd index 7ecff374..082b2b19 100644 --- a/client/map/items/tomato.gd +++ b/client/map/items/tomato.gd @@ -28,6 +28,6 @@ func progress(position_: float, speed: float, warn: bool): super(position_, speed, warn) cut.emitting = true -func finish(warn: bool): - super(warn) +func finish(): + super() cut.emitting = false |