From fa515e639dce157451a3f86f8ddef263e38f6231 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 18 Mar 2022 23:36:04 +0100 Subject: [PATCH] changed the way sent and received messages are stored --- serverCommunication/serverCommunication.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serverCommunication/serverCommunication.go b/serverCommunication/serverCommunication.go index e5976c2..e37db4a 100644 --- a/serverCommunication/serverCommunication.go +++ b/serverCommunication/serverCommunication.go @@ -28,7 +28,7 @@ func getClientByDest(dest int, uuid string) (*structs.WebClient, *structs.Minecr */ func AckHandler() { - ticker := time.NewTicker(3 * time.Second) // 20 * time.Millisecond + ticker := time.NewTicker(1 * time.Second) // 20 * time.Millisecond for _ = range ticker.C { currentTime := time.Now()