Skip to content

Commit

Permalink
add missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
ceceppa committed Aug 30, 2024
1 parent a9d56d2 commit 8332011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/anima/core/declaration/anima_declaration_node.gd
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,10 @@ func clear():
return self

func _then():
_nested_animation("_then")
return _nested_animation("_then")

func _with():
_nested_animation("_with")
return _nested_animation("_with")

func _nested_animation(key):
if not _target_data.has(key):
Expand Down

0 comments on commit 8332011

Please sign in to comment.