From 094a6f23c9f77464a83dfa9cae3dfc3529505ef4 Mon Sep 17 00:00:00 2001 From: Dillinger Date: Mon, 25 Oct 2021 21:59:34 +0000 Subject: [PATCH] Update 'ircbot.go' --- ircbot.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ircbot.go b/ircbot.go index 01035fe..1212a0a 100644 --- a/ircbot.go +++ b/ircbot.go @@ -281,7 +281,7 @@ func ircbot() { drinkyBoys = strings.Replace(drinkyBoys, " ", "", -1) Phone(c," -------> "+drinkyBoys) - case ".smokin": + case ".smokin": if !contains(smokin,Sender) { fmt.Println("[IRC][smokin] New smoker! " + Sender) smokin = append(smokin, Sender) @@ -290,7 +290,7 @@ func ircbot() { smokyBoys = strings.Join(smokin, " ") smokyBoys = strings.Replace(smokyBoys, "nil", "", -1) smokyBoys = strings.Replace(smokyBoys, " ", "", -1) - Phone(c, Sender + " smokes another bowl ;P") + Phone(c, Sender + " smokes another bowl ;P") Phone(c, " 🔥 ------> " + smokyBoys) return }