Update 'ircbot.go'

This commit is contained in:
Dillinger 2021-10-25 21:59:34 +00:00
parent 38ee6ceb51
commit 094a6f23c9

View File

@ -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
}