diff options
author | nokoe <nokoe@mailbox.org> | 2024-07-08 19:38:11 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-07-08 19:38:11 +0200 |
commit | 606d995ab7ca459593807fc895c1ec39dacac878 (patch) | |
tree | 9d3b57b614ca08603c11d203eb2ed9f5bb1206e9 /client/map/items/item.gd | |
parent | 1bebf8ade214ce221a1bc8b39f0ed2b09ae147e6 (diff) | |
download | hurrycurry-606d995ab7ca459593807fc895c1ec39dacac878.tar hurrycurry-606d995ab7ca459593807fc895c1ec39dacac878.tar.bz2 hurrycurry-606d995ab7ca459593807fc895c1ec39dacac878.tar.zst |
fix warnings
Diffstat (limited to 'client/map/items/item.gd')
-rw-r--r-- | client/map/items/item.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd index b657e14f..e9671e91 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -35,6 +35,7 @@ func _init(owned_by_: Node3D): add_child(take_sound) add_child(put_sound) setup_sounds() + @warning_ignore("static_called_on_instance") base.position = base_position() add_child(base) owned_by = owned_by_ |