From 7c3724c81401c51aa7260a5b4658749d75707b03 Mon Sep 17 00:00:00 2001 From: Ricardo Balk <14904229+ricardobalk@users.noreply.github.com> Date: Sun, 12 Apr 2020 19:53:44 +0200 Subject: [PATCH] Spawning another instance is now also obsolete :-) --- cmdDev.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdDev.go b/cmdDev.go index bfdc426..2db7357 100644 --- a/cmdDev.go +++ b/cmdDev.go @@ -29,5 +29,5 @@ func cmdDev(cmd []string) { if (dev) { n = strings.Split(lastChat, "#")[0] } else { n = lastChat } cmdJoin([]string{"/join", n}) } - go updateChatWindow() // Otherwise you won't be able to process incoming messages. + //go updateChatWindow() // Otherwise you won't be able to process incoming messages. }