diff options
author | tpart <tpart120@proton.me> | 2024-09-04 21:14:33 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-04 21:14:33 +0200 |
commit | fc63ac8ce0b6757e4b61a633f93f4f4c27fd7e03 (patch) | |
tree | 353cbf03272028ad5d63c15d6182ea1e67b48806 /client/map/tiles | |
parent | 9c953125445760dbf5c0562854caaa0d1866fda9 (diff) | |
download | hurrycurry-fc63ac8ce0b6757e4b61a633f93f4f4c27fd7e03.tar hurrycurry-fc63ac8ce0b6757e4b61a633f93f4f4c27fd7e03.tar.bz2 hurrycurry-fc63ac8ce0b6757e4b61a633f93f4f4c27fd7e03.tar.zst |
Fix crash on item finished; Clean up code; Update knife model
Diffstat (limited to 'client/map/tiles')
-rw-r--r-- | client/map/tiles/knife.res | bin | 5530 -> 5546 bytes | |||
-rw-r--r-- | client/map/tiles/tile.gd | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/map/tiles/knife.res b/client/map/tiles/knife.res Binary files differindex 77e95cc7..622d9eb3 100644 --- a/client/map/tiles/knife.res +++ b/client/map/tiles/knife.res diff --git a/client/map/tiles/tile.gd b/client/map/tiles/tile.gd index 4075593d..be78883e 100644 --- a/client/map/tiles/tile.gd +++ b/client/map/tiles/tile.gd @@ -61,9 +61,9 @@ func progress(position_: float, speed: float, warn: bool): if item != null: item.progress(position_, speed, warn) -func finish(warn: bool): +func finish(): if item != null: - item.finish(warn) + item.finish() func put_item(i: Item): if item != null: |