From 105de0509c3dfef812515617ee335e97a30aa789 Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Sun, 18 Jun 2023 18:15:06 -0600 Subject: [PATCH] Updated SetMatchState to make a downwards signal --- gql_vex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gql_vex.go b/gql_vex.go index 28c9f70..5e2f117 100644 --- a/gql_vex.go +++ b/gql_vex.go @@ -121,7 +121,7 @@ func GQLVexMutationSetMatchState() *graphql.Field { return nil, errors.New("Failed to cast arg state to string") } - signal := NewSignal(server, state) + signal := NewDownSignal(server, state) owner := server.Owner() if owner == nil {