diff --git a/classes/deck/nodes/twitch/twitch_eventsub_event.gd b/classes/deck/nodes/twitch/twitch_eventsub_event.gd index b06fb3e..663cc82 100644 --- a/classes/deck/nodes/twitch/twitch_eventsub_event.gd +++ b/classes/deck/nodes/twitch/twitch_eventsub_event.gd @@ -35,11 +35,11 @@ func _event_received(event_name: StringName, event_data: Dictionary = {}): return +# Sends the data along as well as the fact that the event happened. While also caching the event data for later access + cached_event_data = event_data.payload # Sends to indicate that the specified event has happened. send(0, null) -# Sends the data along as well as the fact that the event happened. While also caching the event data for later access - cached_event_data = event_data send(1, event_data)