diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-23 00:59:05 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:31:29 +0200 |
commit | f722ef29c49e358c0e7fb660d49e99cf0f7591fa (patch) | |
tree | 842802cd700c0549de63b673a11555e59314c0b1 /client/scripts/tiles/flour_counter.gd | |
parent | 8709a005e81495e8c3ed2c12c1e1421e4736a258 (diff) | |
download | hurrycurry-f722ef29c49e358c0e7fb660d49e99cf0f7591fa.tar hurrycurry-f722ef29c49e358c0e7fb660d49e99cf0f7591fa.tar.bz2 hurrycurry-f722ef29c49e358c0e7fb660d49e99cf0f7591fa.tar.zst |
fix warnings
Diffstat (limited to 'client/scripts/tiles/flour_counter.gd')
-rw-r--r-- | client/scripts/tiles/flour_counter.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/scripts/tiles/flour_counter.gd b/client/scripts/tiles/flour_counter.gd index 6c512d92..56dad60f 100644 --- a/client/scripts/tiles/flour_counter.gd +++ b/client/scripts/tiles/flour_counter.gd @@ -4,6 +4,8 @@ extends CounterBase func _init(rename: String, neighbors: Array): super(rename, neighbors) var bag = load("res://models/prefabs/map/bag.tscn").instantiate() + # this is supposed to be overridden + @warning_ignore("static_called_on_instance") bag.position = interact_target() bag.rotation_degrees.y = 45 base.add_child(bag) |