fix: queue_free() returns void - split into remove_child + queue_free

This commit is contained in:
2026-06-25 23:25:31 -04:00
parent 11d079b38c
commit 2537ad19c0
+2 -1
View File
@@ -73,7 +73,8 @@ func _fresh() -> void:
sm.input_dash = false
fake_player.velocity = Vector3.ZERO
for c in sm.get_children():
sm.remove_child(c.queue_free())
sm.remove_child(c)
c.queue_free()
func _expect(cond: bool, msg: String) -> void: