From cc3978478966f02e49d18e6793a575b74f749656 Mon Sep 17 00:00:00 2001 From: donuts-are-good <96031819+donuts-are-good@users.noreply.github.com> Date: Sat, 18 Nov 2023 00:39:36 -0600 Subject: [PATCH] removing the wait time --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 6d1fbae..35c1fea 100644 --- a/main.go +++ b/main.go @@ -156,5 +156,5 @@ func sendMessage(client *gomatrix.Client, roomID, message string) { } else { fmt.Println(colors.BrightGreen + "Sent!" + colors.Nc) } - time.Sleep(messageDelay) + // time.Sleep(messageDelay) }