From 1c3b7b6f328ef35215186682132f999409715fe0 Mon Sep 17 00:00:00 2001 From: yuki Date: Mon, 17 Nov 2025 20:33:33 -0300 Subject: [PATCH] stronger typing --- scenes/classes/state.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/classes/state.gd b/scenes/classes/state.gd index 20ba1f1..9648ee7 100644 --- a/scenes/classes/state.gd +++ b/scenes/classes/state.gd @@ -4,7 +4,7 @@ ## Emitted when the state finishes and wants to transition to another state. @warning_ignore("unused_signal") -signal finished(next_state_path: String, data: Dictionary) +signal finished(next_state_path: String, data: Dictionary[String, Variant]) ## For 'ghost frame' update fix