From f21b52aa01115768aa56878d0c46693b6708fec8 Mon Sep 17 00:00:00 2001 From: shoopea Date: Mon, 15 Jun 2020 15:05:12 +0200 Subject: [PATCH] test --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index ad31cd7..6c50866 100644 --- a/main.go +++ b/main.go @@ -164,7 +164,7 @@ func main() { if paused && clients > 0 { paused = false - px = PacketAdminRCon{ + px := PacketAdminRCon{ Packet: Packet{PType: AdminPacketAdminRCon}, Command: "unpause", } @@ -172,7 +172,7 @@ func main() { } if !paused && clients == 0 { paused = true - px = PacketAdminRCon{ + px := PacketAdminRCon{ Packet: Packet{PType: AdminPacketAdminRCon}, Command: "pause", }