From 220eb5ff426ecc4fede1b8f8406dc324296b41c6 Mon Sep 17 00:00:00 2001 From: "diamondburned (Forefront)" Date: Tue, 25 Feb 2020 22:37:26 -0800 Subject: [PATCH] Gateway: Fixed OP chan not having a concrete type --- gateway/gateway.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/gateway.go b/gateway/gateway.go index 5b556be..7cd957a 100644 --- a/gateway/gateway.go +++ b/gateway/gateway.go @@ -97,7 +97,7 @@ type Gateway struct { // If this channel is non-nil, all incoming OP packets will also be sent // here. This should be buffered, so to not block the main loop. - OP chan Event + OP chan *OP // Filled by methods, internal use paceDeath chan error