From 2c238c25b89e8f8cac0acdca338bfb80e3a59e4a Mon Sep 17 00:00:00 2001 From: an Date: Thu, 28 Nov 2019 09:08:31 +0100 Subject: [PATCH] fix: spaces --- modules/eso.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/eso.go b/modules/eso.go index cd71634..72c3c97 100644 --- a/modules/eso.go +++ b/modules/eso.go @@ -150,6 +150,6 @@ func esoHandleMessage(m *Message) { return } if tok[0] == "!eso" { - SayCh <- fmt.Sprintf("%s\n%s %s %s %s %s", m.Channel, ohai[rand.Intn(len(ohai))], buty[rand.Intn(len(buty))], wat[rand.Intn(len(wat))], dointings[rand.Intn(len(dointings))], todotings[rand.Intn(len(todotings))]) + SayCh <- fmt.Sprintf("%s\n%s%s%s%s%s", m.Channel, ohai[rand.Intn(len(ohai))], buty[rand.Intn(len(buty))], wat[rand.Intn(len(wat))], dointings[rand.Intn(len(dointings))], todotings[rand.Intn(len(todotings))]) } }